Skip to content

Commit 0debeb4

Browse files
committed
New version - 2.18
1 parent 5b0683a commit 0debeb4

File tree

3 files changed

+82
-2
lines changed

3 files changed

+82
-2
lines changed

NEWS.rst

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,59 @@
1+
Libblockdev 2.18
2+
----------------
3+
4+
New minor release of the libblockdev library with multiple fixes. See below
5+
for details.
6+
7+
**Notable changes**
8+
9+
- features
10+
11+
- New plugin: vdo
12+
13+
- support for creating and managing VDO volumes
14+
15+
- Support for building dm plugin without libdmraid support -- configure option ``--without-dmraid``.
16+
17+
**Full list of changes**
18+
19+
Kai Lüke (2):
20+
21+
- Correct arguments for ext4 repair with progress
22+
- Introduce reporting function per thread
23+
24+
Tomas Bzatek (3):
25+
26+
- vdo: Resolve real device file path
27+
- vdo: Implement bd_vdo_grow_physical()
28+
- vdo: Add tests for bd_vdo_grow_physical()
29+
30+
Vojtech Trefny (14):
31+
32+
- Update specs.rst and features.rst
33+
- Fix release number in NEWS.rst
34+
- Add 'bd_dm_is_tech_avail' to header file
35+
- Always check for error when (un)mounting
36+
- Add the VDO plugin
37+
- Add basic VDO plugin functionality
38+
- Add decimal units definition to utils/sizes.h
39+
- Add tests for VDO plugin
40+
- Only require plugins we really need in LVM dbus tests
41+
- Allow compiling libblockdev without libdmraid
42+
- Adjust to new NVDIMM namespace modes
43+
- Do not try to build VDO plugin on Fedora
44+
- Remove roadmap.rst
45+
- Add VDO to features.rst
46+
47+
Vratislav Podzimek (2):
48+
49+
- Use xfs_repair instead of xfs_db in bd_fs_xfs_check()
50+
- Clarify that checking an RW-mounted XFS file system is impossible
51+
52+
segfault (1):
53+
54+
- Fix off-by-one error when counting TCRYPT keyfiles
55+
56+
157
Libblockdev 2.17
258
----------------
359

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# configure.ac for libblockdev
22

3-
AC_INIT([libblockdev], [2.17], [[email protected]])
3+
AC_INIT([libblockdev], [2.18], [[email protected]])
44

55
# Disable building static libraries.
66
# This needs to be set before initializing automake

dist/libblockdev.spec.in

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
%define configure_opts %{?python2_copts} %{?python3_copts} %{?bcache_copts} %{?lvm_dbus_copts} %{?btrfs_copts} %{?crypto_copts} %{?dm_copts} %{?loop_copts} %{?lvm_copts} %{?lvm_dbus_copts} %{?mdraid_copts} %{?mpath_copts} %{?swap_copts} %{?kbd_copts} %{?part_copts} %{?fs_copts} %{?nvdimm_copts} %{vdo_copts} %{?gi_copts}
108108

109109
Name: libblockdev
110-
Version: 2.17
110+
Version: 2.18
111111
Release: 1%{?dist}
112112
Summary: A library for low-level manipulation with block devices
113113
License: LGPLv2+
@@ -931,6 +931,30 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm}
931931
%files plugins-all
932932

933933
%changelog
934+
* Wed Jun 20 2018 Vojtech Trefny <[email protected]> - 2.18-1
935+
- Add VDO to features.rst (vtrefny)
936+
- Remove roadmap.rst (vtrefny)
937+
- vdo: Add tests for bd_vdo_grow_physical() (tbzatek)
938+
- Do not try to build VDO plugin on Fedora (vtrefny)
939+
- Introduce reporting function per thread (kailueke)
940+
- vdo: Implement bd_vdo_grow_physical() (tbzatek)
941+
- Correct arguments for ext4 repair with progress (kailueke)
942+
- Clarify that checking an RW-mounted XFS file system is impossible (v.podzimek)
943+
- vdo: Resolve real device file path (tbzatek)
944+
- Adjust to new NVDIMM namespace modes (vtrefny)
945+
- Use xfs_repair instead of xfs_db in bd_fs_xfs_check() (v.podzimek)
946+
- Allow compiling libblockdev without libdmraid (vtrefny)
947+
- Only require plugins we really need in LVM dbus tests (vtrefny)
948+
- Add tests for VDO plugin (vtrefny)
949+
- Add decimal units definition to utils/sizes.h (vtrefny)
950+
- Add basic VDO plugin functionality (vtrefny)
951+
- Add the VDO plugin (vtrefny)
952+
- Always check for error when (un)mounting (vtrefny)
953+
- Fix off-by-one error when counting TCRYPT keyfiles (segfault)
954+
- Add 'bd_dm_is_tech_avail' to header file (vtrefny)
955+
- Fix release number in NEWS.rst (vtrefny)
956+
- Update specs.rst and features.rst (vtrefny)
957+
934958
* Tue Apr 24 2018 Vojtech Trefny <[email protected]> - 2.17-1
935959
- Redirect cryptsetup log to libblockdev log (vtrefny)
936960
- Add a generic logging function for libblockdev (vtrefny)

0 commit comments

Comments
 (0)