Skip to content

Commit c30839a

Browse files
committed
New version - 2.15
1 parent 96a40c9 commit c30839a

File tree

3 files changed

+81
-2
lines changed

3 files changed

+81
-2
lines changed

NEWS.rst

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
Libblockdev 2.15
2+
----------------
3+
4+
New minor release of the libblockdev library with multiple fixes and quite big
5+
refactorization changes (in the file system plugin). See below for details.
6+
7+
8+
**Notable changes**
9+
10+
- fixes
11+
12+
- Fix bd_s390_dasd_format() and bd_s390_dasd_is_ldl().
13+
14+
- Fix how GPT patition flags are set.
15+
16+
- Check the *btrfs* module availability as part of checking the *btrfs*
17+
plugin's dependencies.
18+
19+
- Fix memory leaks in bd_fs_vfat_get_info()
20+
21+
- Fix the file system plugin's dependency checking mechanisms.
22+
23+
24+
- features
25+
26+
- Mark some of the tests as unstable so that their failures are reported, but
27+
ignored in the overall test suite status.
28+
29+
- The file system plugin is now split into multiple source files making it
30+
easier to add support for more file systems and technologies.
31+
32+
33+
**Full list of changes**
34+
35+
Vendula Poncova (2):
36+
- bd_s390_dasd_is_ldl should be true only for LDL DADSs
37+
- Fix bd_s390_dasd_format
38+
39+
Vojtech Trefny (5):
40+
- Use only sgdisk to set flags on GPT
41+
- Add test for setting partition flags on GPT
42+
- Free locale struct in kbd plugin
43+
- Move kernel modules (un)loading and checking into utils
44+
- Check for btrfs module availability in btrfs module
45+
46+
Vratislav Podzimek (11):
47+
- Do not lie about tag creation
48+
- Mark unstable tests as such
49+
- Split the FS plugin source into multiple files
50+
- Split the bd_fs_is_tech_avail() implementation
51+
- Revert the behaviour of bd_fs_check_deps()
52+
- Fix memory leaks in bd_fs_vfat_get_info()
53+
- Mark bcache tests as unstable
54+
- Add a HACKING.rst file
55+
- Move the fs.h file to its original place
56+
- Do not use the btrfs plugin in library tests
57+
- Do not use the 'btrfs' plugin in overrides tests
58+
59+
160
Libblockdev 2.14
261
----------------
362

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.14], [[email protected]])
3+
AC_INIT([libblockdev], [2.15], [[email protected]])
44

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

dist/libblockdev.spec.in

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
%define configure_opts %{?distro_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} %{?gi_copts}
6767

6868
Name: libblockdev
69-
Version: 2.14
69+
Version: 2.15
7070
Release: 1%{?dist}
7171
Summary: A library for low-level manipulation with block devices
7272
License: LGPLv2+
@@ -800,6 +800,26 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm}
800800
%files plugins-all
801801

802802
%changelog
803+
* Fri Dec 01 2017 Vratislav Podzimek <[email protected]> - 2.15-1
804+
- Do not use the 'btrfs' plugin in overrides tests (vpodzime)
805+
- Do not use the btrfs plugin in library tests (vpodzime)
806+
- Check for btrfs module availability in btrfs module (vtrefny)
807+
- Move kernel modules (un)loading and checking into utils (vtrefny)
808+
- Free locale struct in kbd plugin (vtrefny)
809+
- Add test for setting partition flags on GPT (vtrefny)
810+
- Use only sgdisk to set flags on GPT (vtrefny)
811+
- Move the fs.h file to its original place (vpodzime)
812+
- Add a HACKING.rst file (vpodzime)
813+
- Mark bcache tests as unstable (vpodzime)
814+
- Fix memory leaks in bd_fs_vfat_get_info() (vpodzime)
815+
- Revert the behaviour of bd_fs_check_deps() (vpodzime)
816+
- Split the bd_fs_is_tech_avail() implementation (vpodzime)
817+
- Split the FS plugin source into multiple files (vpodzime)
818+
- Fix bd_s390_dasd_format (vponcova)
819+
- Mark unstable tests as such (vpodzime)
820+
- bd_s390_dasd_is_ldl should be true only for LDL DADSs (vponcova)
821+
- Do not lie about tag creation (vpodzime)
822+
803823
* Tue Oct 31 2017 Vratislav Podzimek <[email protected]> - 2.14-1
804824
- Support the legacy boot GPT flag (intrigeri)
805825
- Respect the version in the blockdev.pc file (vpodzime)

0 commit comments

Comments
 (0)