diff --git a/blivet/__init__.py b/blivet/__init__.py index 7038b2154..e3563e984 100644 --- a/blivet/__init__.py +++ b/blivet/__init__.py @@ -20,7 +20,7 @@ # Vratislav Podzimek # -__version__ = '3.10.0' +__version__ = '3.10.1' import sys import importlib diff --git a/doc/conf.py b/doc/conf.py index b05ac382b..8ca6bc7b1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ # built documents. # # The short X.Y version. -version = '3.10.0' +version = '3.10.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/python-blivet.spec b/python-blivet.spec index 38a389aef..3fd47166e 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.10.0 +Version: 3.10.1 #%%global prerelease .b2 # prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 @@ -109,6 +109,18 @@ make DESTDIR=%{buildroot} install %{python3_sitelib}/* %changelog +* Fri Jun 07 2024 Vojtech Trefny - 3.10.1-1 +- tests: Add a test case with MD array on LUKS (vtrefny) +- Add support for setting label when creating GFS2 format (vtrefny) +- tests: add dbus example to traverse the devices and call test the factory() + (tgill) +- fix issue #1239 (koito_coco) +- fix compare uuid fail (iasunsea) +- Remove support for the MD linear RAID level (vtrefny) +- ci: Fix repository name in job name in check.yml (vtrefny) +- Fix pylint 'possibly-used-before-assignment' warnings (vtrefny) +- Fix skipping btrfs calls when libblockdev btrfs plugin is missing (vtrefny) + * Fri May 10 2024 Vojtech Trefny - 3.10.0-1 - Added support for PV grow (japokorn) - misc: Add stratis-cli and stratisd to test dependencies (vtrefny) diff --git a/setup.py b/setup.py index cf3bc89f6..eef32049c 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def make_release_tree(self, base_dir, files): setup(name='blivet', - version='3.10.0', + version='3.10.1', cmdclass={"sdist": blivet_sdist}, description='Python module for system storage configuration', long_description=long_description,