From c79f84780dd73fe16d8a52550f74d8059af6c2e0 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Thu, 20 Jul 2023 08:39:25 +0200 Subject: [PATCH] New version - 3.0.2 --- NEWS.rst | 33 +++++++++++++++++++++++++++++++++ configure.ac | 2 +- dist/libblockdev.spec.in | 14 +++++++++++++- 3 files changed, 47 insertions(+), 2 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 35331cdf2..0a88a8a8c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,36 @@ +Libblockdev 3.0.2 +------------------ + +New bugfix release of the libblockdev library with multiple fixes. See below +for details. + +**Full list of changes** + +Alexis Murzeau (1): + +- Use ntfsinfo instead of ntfscluster for faster bd_fs_ntfs_get_info + +Marek Szuba (1): + +- docs: Fix test quotation + +Michael Biebl (1): + +- Restrict list of exported symbols via -export-symbols-regex + +Tomas Bzatek (2): + +- lib: Silence the missing DEFAULT_CONF_DIR_PATH +- loop: Report BD_LOOP_ERROR_DEVICE on empty loop devices + +Vojtech Trefny (5): + +- Fix formatting in NEWS.rst +- fs: Fix unused error in extract_e2fsck_progress +- fs: Use read-only mount where possible for generic FS functions +- fs: Document that generic functions can mount filesystems +- fs: Avoid excess logging in extract_e2fsck_progress + Libblockdev 3.0.1 ------------------ diff --git a/configure.ac b/configure.ac index 696df3231..38d024b67 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # configure.ac for libblockdev -AC_INIT([libblockdev], [3.0.1], [], [], [https://github.com/storaged-project/libblockdev]) +AC_INIT([libblockdev], [3.0.2], [], [], [https://github.com/storaged-project/libblockdev]) # Disable building static libraries. # This needs to be set before initializing automake diff --git a/dist/libblockdev.spec.in b/dist/libblockdev.spec.in index a58bc32ac..a325fafa4 100644 --- a/dist/libblockdev.spec.in +++ b/dist/libblockdev.spec.in @@ -77,7 +77,7 @@ %define configure_opts %{?python3_copts} %{?lvm_dbus_copts} %{?btrfs_copts} %{?crypto_copts} %{?dm_copts} %{?loop_copts} %{?lvm_copts} %{?lvm_dbus_copts} %{?mdraid_copts} %{?mpath_copts} %{?swap_copts} %{?part_copts} %{?fs_copts} %{?nvdimm_copts} %{?tools_copts} %{?gi_copts} %{?nvme_copts} Name: libblockdev -Version: 3.0.1 +Version: 3.0.2 Release: 1%{?dist} Summary: A library for low-level manipulation with block devices License: LGPL-2.1-or-later @@ -845,6 +845,18 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm} %files plugins-all %changelog +* Thu Jul 20 2023 Vojtech Trefny - 3.0.2-1 +- fs: Avoid excess logging in extract_e2fsck_progress (vtrefny) +- loop: Report BD_LOOP_ERROR_DEVICE on empty loop devices (tbzatek) +- lib: Silence the missing DEFAULT_CONF_DIR_PATH (tbzatek) +- fs: Document that generic functions can mount filesystems (vtrefny) +- fs: Use read-only mount where possible for generic FS functions (vtrefny) +- docs: Fix test quotation (marecki) +- fs: Fix unused error in extract_e2fsck_progress (vtrefny) +- Use ntfsinfo instead of ntfscluster for faster bd_fs_ntfs_get_info (amubtdx) +- Restrict list of exported symbols via -export-symbols-regex (biebl) +- Fix formatting in NEWS.rst (vtrefny) + * Tue Jul 04 2023 Vojtech Trefny - 3.0.1-1 - fs: Simplify struct BDFSInfo (tbzatek) - boilerplate_generator: Annotate stub func args as G_GNUC_UNUSED (tbzatek)