diff --git a/blivet/__init__.py b/blivet/__init__.py index b973a9b82..76b295bc6 100644 --- a/blivet/__init__.py +++ b/blivet/__init__.py @@ -20,7 +20,7 @@ # Vratislav Podzimek # -__version__ = '3.3.0' +__version__ = '3.3.1' import sys import importlib diff --git a/doc/conf.py b/doc/conf.py index f034a8fdd..178dff7bf 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ # built documents. # # The short X.Y version. -version = '3.3.0' +version = '3.3.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/po b/po index 4ffd06a3f..64ffa5d31 160000 --- a/po +++ b/po @@ -1 +1 @@ -Subproject commit 4ffd06a3f085ec6c8f2a3764068fa7f89cebe1b6 +Subproject commit 64ffa5d31ec6f3d3eebc836c349678fab0974bb7 diff --git a/python-blivet.spec b/python-blivet.spec index 7658fd4be..c05ce74af 100644 --- a/python-blivet.spec +++ b/python-blivet.spec @@ -19,7 +19,7 @@ Summary: A python module for system storage configuration Name: python-blivet Url: https://storageapis.wordpress.com/projects/blivet -Version: 3.3.0 +Version: 3.3.1 #%%global prerelease .b2 # prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 @@ -191,6 +191,24 @@ configuration. %endif %changelog +* Tue Oct 20 2020 Vojtech Trefny - 3.3.1-1 +- Make sure the product name is safe when using it for device name (vtrefny) +- Run packit RPM builds on Fedora ELN (vtrefny) +- Allow specifying 'mode' for the sdist command (vtrefny) +- Enable packit RPM builds on pull requests (vtrefny) +- Start the iscsi-init service (#1880673) (vponcova) +- Let parted fix fixable issues with partition table (vtrefny) +- edd: Fix UnboundLocalError when trying to close fd in collect_mbrs (vtrefny) +- Use UnusableConfigurationError for partially hidden multipath devices + (vtrefny) +- Close fd if it fails to read the device (nashok) +- Do not run udev.settle in StorageDevice._pre_teardown (vtrefny) +- Try to not use udev.resolve_devspec when querying MountsCache (vtrefny) +- Remove Zanata config file (vtrefny) +- Ignore new pylint warning W0707 "raise-missing-from" (vtrefny) +- Use SSH "link" for l10n repository in Makefile (vtrefny) +- Fix source tarball cleanup in srpm and rpm Makefile targets (vtrefny) + * Thu Aug 20 2020 Vojtech Trefny - 3.3.0-1 - Account for pmspare grow when adjusting thinpool metadata size (vtrefny) - Fix ignoring disk devices with parents or children (vtrefny) diff --git a/setup.py b/setup.py index 593edf7d3..e95d8abff 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def make_release_tree(self, base_dir, files): setup(name='blivet', - version='3.3.0', + version='3.3.1', cmdclass={"sdist": blivet_sdist}, description='Python module for system storage configuration', long_description=long_description,