Skip to content

Commit eb7d146

Browse files
committed
New version: 3.10.1
1 parent a013290 commit eb7d146

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

blivet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Vratislav Podzimek <vpodzime@redhat.com>
2121
#
2222

23-
__version__ = '3.10.0'
23+
__version__ = '3.10.1'
2424

2525
import sys
2626
import importlib

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# built documents.
5050
#
5151
# The short X.Y version.
52-
version = '3.10.0'
52+
version = '3.10.1'
5353
# The full version, including alpha/beta/rc tags.
5454
release = version
5555

python-blivet.spec

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Summary: A python module for system storage configuration
22
Name: python-blivet
33
Url: https://storageapis.wordpress.com/projects/blivet
4-
Version: 3.10.0
4+
Version: 3.10.1
55

66
#%%global prerelease .b2
77
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
@@ -109,6 +109,18 @@ make DESTDIR=%{buildroot} install
109109
%{python3_sitelib}/*
110110

111111
%changelog
112+
* Fri Jun 07 2024 Vojtech Trefny <vtrefny@redhat.com> - 3.10.1-1
113+
- tests: Add a test case with MD array on LUKS (vtrefny)
114+
- Add support for setting label when creating GFS2 format (vtrefny)
115+
- tests: add dbus example to traverse the devices and call test the factory()
116+
(tgill)
117+
- fix issue #1239 (koito_coco)
118+
- fix compare uuid fail (iasunsea)
119+
- Remove support for the MD linear RAID level (vtrefny)
120+
- ci: Fix repository name in job name in check.yml (vtrefny)
121+
- Fix pylint 'possibly-used-before-assignment' warnings (vtrefny)
122+
- Fix skipping btrfs calls when libblockdev btrfs plugin is missing (vtrefny)
123+
112124
* Fri May 10 2024 Vojtech Trefny <vtrefny@redhat.com> - 3.10.0-1
113125
- Added support for PV grow (japokorn)
114126
- misc: Add stratis-cli and stratisd to test dependencies (vtrefny)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def make_release_tree(self, base_dir, files):
8585

8686

8787
setup(name='blivet',
88-
version='3.10.0',
88+
version='3.10.1',
8989
cmdclass={"sdist": blivet_sdist},
9090
description='Python module for system storage configuration',
9191
long_description=long_description,

0 commit comments

Comments
 (0)