From e5dd270af952460007ed0b517a489849179d45f4 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Tue, 27 Feb 2024 10:42:46 +0100 Subject: [PATCH] New version: 3.9.1 --- blivet/__init__.py | 2 +- doc/conf.py | 2 +- python-blivet.spec | 12 +++++++++++- setup.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/blivet/__init__.py b/blivet/__init__.py index fb559eac7..ac9c1153d 100644 --- a/blivet/__init__.py +++ b/blivet/__init__.py @@ -20,7 +20,7 @@ # Vratislav Podzimek # -__version__ = '3.9.0' +__version__ = '3.9.1' import sys import importlib diff --git a/doc/conf.py b/doc/conf.py index dc4da6c04..4ec067982 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ # built documents. # # The short X.Y version. -version = '3.9.0' +version = '3.9.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/python-blivet.spec b/python-blivet.spec index a1810aa8b..5ad52ac44 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.9.0 +Version: 3.9.1 #%%global prerelease .b2 # prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 @@ -110,6 +110,16 @@ make DESTDIR=%{buildroot} install %{python3_sitelib}/* %changelog +* Tue Feb 27 2024 Vojtech Trefny - 3.9.1-1 +- Try to assemble MD arrays during populate (#2236356) (vtrefny) +- Fix UnboundLocalError in MD populator (vtrefny) +- Fix crash when scanning degraded/not fully assembled MD arrays (vtrefny) +- pylint: Remove some old false positives (vtrefny) +- tests: Skip MD storage tests on RHEL/CentOS 9 (vtrefny) +- misc: Bump libblockdev version for Debian (vtrefny) +- Fix typos (vtrefny) +- Remove unused import (vtrefny) + * Wed Jan 31 2024 Vojtech Trefny - 3.9.0-1 - Fix getting default LVM cache metadata size from libblockdev (vtrefny) - Fix checking for segment type for cache pools (vtrefny) diff --git a/setup.py b/setup.py index 9bf58222b..e6bb3f309 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def make_release_tree(self, base_dir, files): setup(name='blivet', - version='3.9.0', + version='3.9.1', cmdclass={"sdist": blivet_sdist}, description='Python module for system storage configuration', long_description=long_description,