From aef3316cd932117a272526e0c370d5c9897c9854 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Thu, 12 Oct 2023 13:04:21 +0200 Subject: [PATCH] New version: 3.8.2 --- blivet/__init__.py | 2 +- doc/conf.py | 2 +- po | 2 +- python-blivet.spec | 19 ++++++++++++++++++- setup.py | 2 +- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/blivet/__init__.py b/blivet/__init__.py index d765ede1e..0c76dabb6 100644 --- a/blivet/__init__.py +++ b/blivet/__init__.py @@ -20,7 +20,7 @@ # Vratislav Podzimek # -__version__ = '3.8.1' +__version__ = '3.8.2' import sys import importlib diff --git a/doc/conf.py b/doc/conf.py index f2722e26d..da69ecc76 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ # built documents. # # The short X.Y version. -version = '3.8.1' +version = '3.8.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/po b/po index ad12f20ff..f829d2794 160000 --- a/po +++ b/po @@ -1 +1 @@ -Subproject commit ad12f20ff129150150f59f2967948f0437495724 +Subproject commit f829d27942006aa242d9c17b1ceae6e886735ec5 diff --git a/python-blivet.spec b/python-blivet.spec index 1b2289fe1..6d45b90b6 100644 --- a/python-blivet.spec +++ b/python-blivet.spec @@ -1,7 +1,7 @@ Summary: A python module for system storage configuration Name: python-blivet Url: https://storageapis.wordpress.com/projects/blivet -Version: 3.8.1 +Version: 3.8.2 #%%global prerelease .b2 # prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 @@ -108,6 +108,23 @@ make DESTDIR=%{buildroot} install %{python3_sitelib}/* %changelog +* Thu Oct 12 2023 Vojtech Trefny - 3.8.2-1 +- tests: Ignore new pylint false positive with pylint 3.0 (vtrefny) +- pylint: Use 'exit' instead of 'do_exit' for pylint.lint.Run (vtrefny) +- Revert "When creating a shared LVM VG skip pvcreate" (vtrefny) +- Revert "Force command line based libblockdev LVM plugin" (vtrefny) +- ci: Bump actions/checkout from v2/3 to v4 (vtrefny) +- spec: Add libblockdev-nvme as weak dependency (vtrefny) +- Always require NVMe plugin (vtrefny) +- Enable LVM logging only in debug mode (vtrefny) +- nvme: Require additional rpms for dracut (tbzatek) +- Force command line based libblockdev LVM plugin (vtrefny) +- When creating a shared LVM VG skip pvcreate (vtrefny) +- Add support for creating shared LVM setups (vtrefny) +- nvme: Align HostNQN and HostID format to TP4126 (tbzatek) +- README: Fix typo (vtrefny) +- README: Update Debian dependencies for libblockdev 3.0 (vtrefny) + * Thu Aug 03 2023 Vojtech Trefny - 3.8.1-1 - Ignore new false positives with the latest pylint (vtrefny) - iscsi: Rename storaged to udisks (tbzatek) diff --git a/setup.py b/setup.py index 4541dc914..177961174 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def make_release_tree(self, base_dir, files): setup(name='blivet', - version='3.8.1', + version='3.8.2', cmdclass={"sdist": blivet_sdist}, description='Python module for system storage configuration', long_description=long_description,