Skip to content

Commit 0fbc1d4

Browse files
committed
New version: 3.9.2
1 parent c691200 commit 0fbc1d4

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-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 <[email protected]>
2121
#
2222

23-
__version__ = '3.9.1'
23+
__version__ = '3.9.2'
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.9.1'
52+
version = '3.9.2'
5353
# The full version, including alpha/beta/rc tags.
5454
release = version
5555

python-blivet.spec

Lines changed: 20 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.9.1
4+
Version: 3.9.2
55

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

112112
%changelog
113+
* Thu Mar 28 2024 Vojtech Trefny <[email protected]> - 3.9.2-1
114+
- tests: Add a simple unit test for listing btrfs subvolumes (vtrefny)
115+
- Fix getting default subvolume ID for mounted btrfs volumes (vtrefny)
116+
- Do not try to get btrfs subvolumes without libblockdev (vtrefny)
117+
- Do not raise not implemented exception when checking if btrfs is empty
118+
(vtrefny)
119+
- Try to start stratisd before checking its availability (vtrefny)
120+
- Fix creating Stratis filesystem without size specified (vtrefny)
121+
- Fix printing the partition type UUID (vtrefny)
122+
- Adjust check for btrfs filesystem being empty (vtrefny)
123+
- Fix util.detect_virt on Amazon (vtrefny)
124+
- misc: Vagrantfile update (vtrefny)
125+
- misc: Run pip with --break-system-packages (vtrefny)
126+
- misc: Add missing libmount build dependencies (vtrefny)
127+
- availability: Check for mpath friendly names availability (vtrefny)
128+
- Allow running blivet without libmount Python bindings (vtrefny)
129+
- Fstab cleanup fix (japokorn)
130+
- Fix getting subvolumes for mounted btrfs volumes (vtrefny)
131+
113132
* Tue Feb 27 2024 Vojtech Trefny <[email protected]> - 3.9.1-1
114133
- Try to assemble MD arrays during populate (#2236356) (vtrefny)
115134
- Fix UnboundLocalError in MD populator (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.9.1',
88+
version='3.9.2',
8989
cmdclass={"sdist": blivet_sdist},
9090
description='Python module for system storage configuration',
9191
long_description=long_description,

0 commit comments

Comments
 (0)