Skip to content

Commit a022537

Browse files
committedMar 19, 2025·
New version 3.12.1
1 parent b62c93c commit a022537

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed
 

‎blivet/__init__.py

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

23-
__version__ = '3.12.0'
23+
__version__ = '3.12.1'
2424

2525
import sys
2626
import importlib

‎doc/conf.py

+1-1
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.12.0'
52+
version = '3.12.1'
5353
# The full version, including alpha/beta/rc tags.
5454
release = version
5555

‎python-blivet.spec

+12-1
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.12.0
4+
Version: 3.12.1
55

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

115115
%changelog
116+
* Wed Mar 19 2025 Vojtech Trefny <vtrefny@redhat.com> - 3.12.1-1
117+
- Fix running filesystem sync in installation environment (vtrefny)
118+
- Add a simple test for setting the allow-discards flag on LUKS (vtrefny)
119+
- tests: Add tests for FSTabManager.find_device (vtrefny)
120+
- Fix reading fstab options in FSTabManager.find_device (vtrefny)
121+
- Set persitent allow-discards flag for newly created LUKS devices (vtrefny)
122+
- tests: Run LUKS test cases with both LUKS 1 and 2 (vtrefny)
123+
- iscsi: Use node.startup=onboot option for Login (vtrefny)
124+
- tests: Add a simple test case for generating LUKS escrow packet (vtrefny)
125+
- luks/escrow: Only add backup passphrase when asked to (vtrefny)
126+
116127
* Fri Feb 14 2025 Vojtech Trefny <vtrefny@redhat.com> - 3.12.0-1
117128
- spec: Remove old changelog entries from SPEC file (vtrefny)
118129
- spec: Bump required version of libblockdev to 3.3.0 (vtrefny)

‎setup.py

+1-1
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.12.0',
88+
version='3.12.1',
8989
cmdclass={"sdist": blivet_sdist},
9090
description='Python module for system storage configuration',
9191
long_description=long_description,

0 commit comments

Comments
 (0)
Please sign in to comment.