-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
# Vratislav Podzimek <[email protected]> | ||
# | ||
|
||
__version__ = '3.2.1' | ||
__version__ = '3.2.2' | ||
|
||
import sys | ||
import importlib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2020-01-29 14:04+0100\n" | ||
"POT-Creation-Date: 2020-05-21 12:42+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -315,15 +315,15 @@ msgstr "" | |
msgid "Cannot remove a member from existing %s array" | ||
msgstr "" | ||
|
||
#: ../blivet/formats/fs.py:932 | ||
#: ../blivet/formats/fs.py:934 | ||
msgid "EFI System Partition" | ||
msgstr "" | ||
|
||
#: ../blivet/formats/fs.py:1137 | ||
#: ../blivet/formats/fs.py:1139 | ||
msgid "Apple Bootstrap" | ||
msgstr "" | ||
|
||
#: ../blivet/formats/fs.py:1173 | ||
#: ../blivet/formats/fs.py:1175 | ||
msgid "Linux HFS+ ESP" | ||
msgstr "" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
Summary: A python module for system storage configuration | ||
Name: python-blivet | ||
Url: https://storageapis.wordpress.com/projects/blivet | ||
Version: 3.2.1 | ||
Version: 3.2.2 | ||
|
||
#%%global prerelease .b2 | ||
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 | ||
|
@@ -191,6 +191,19 @@ configuration. | |
%endif | ||
|
||
%changelog | ||
* Thu May 21 2020 Jan Pokorny <[email protected]> - 3.2.2-1 | ||
- Allow setting size for non-existing LUKS devices (vtrefny) | ||
- Fix toggling container encryption in devicefactory (#1827254) (vtrefny) | ||
- Do no include destroyed devices in list of names (#1830515) (vtrefny) | ||
- Fix changing LUKS version in devicefactory (#1834373) (vtrefny) | ||
- Add "is_empty" property to StorageDevice (vtrefny) | ||
- Mark warning "'GError' has no 'message' member" as false positive (vtrefny) | ||
- Use the specified LUKS version for container encryption (vponcova) | ||
- Log current storage state before reset using lsblk (vtrefny) | ||
- Do not remove _netdev mount option specified manually by users (vtrefny) | ||
- Fix renaming encrypted devices in the DeviceFactory (vtrefny) | ||
- Fix typo in string formatter in EddEntry (vtrefny) | ||
|
||
* Mon Apr 06 2020 Vojtech Trefny <[email protected]> - 3.2.1-1 | ||
- Correctly recognize EFI format on an MD RAID device (#1695913) (vtrefny) | ||
- Do not set empty name instead of invalid one in devicefactory (#1813710) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ def make_release_tree(self, base_dir, files): | |
|
||
|
||
setup(name='blivet', | ||
version='3.2.1', | ||
version='3.2.2', | ||
cmdclass={"sdist": blivet_sdist}, | ||
description='Python module for system storage configuration', | ||
author='David Lehman', author_email='[email protected]', | ||
|