Skip to content

Commit

Permalink
New version: 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechtrefny committed Jan 29, 2020
1 parent cb65c4b commit 196c4ad
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 25 deletions.
2 changes: 1 addition & 1 deletion blivet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Vratislav Podzimek <[email protected]>
#

__version__ = '3.1.7'
__version__ = '3.2.0'

import sys
import importlib
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@

# General information about the project.
project = u'Blivet'
copyright = u'2013-2016, Red Hat, Inc.' # pylint: disable=redefined-builtin
copyright = u'2013-2020, Red Hat, Inc.' # pylint: disable=redefined-builtin

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '3.1.7'
version = '3.2.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
34 changes: 17 additions & 17 deletions po/blivet.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-01-29 13:22+0100\n"
"POT-Creation-Date: 2020-01-29 14:04+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -162,64 +162,64 @@ msgstr ""
msgid "Could not log in to any of the discovered nodes"
msgstr ""

#: ../blivet/partitioning.py:450
#: ../blivet/partitioning.py:454
msgid "unable to allocate aligned partition"
msgstr ""

#: ../blivet/partitioning.py:458
#: ../blivet/partitioning.py:462
msgid "requested size exceeds maximum allowed"
msgstr ""

#: ../blivet/partitioning.py:576
#: ../blivet/partitioning.py:580
#, python-format
msgid "disk %s inaccessible"
msgstr ""

#: ../blivet/partitioning.py:637
#: ../blivet/partitioning.py:641
#, python-format
msgid ""
"partition is too small for %(format)s formatting (allowable size is "
"%(min_size)s to %(max_size)s)"
msgstr ""

#: ../blivet/partitioning.py:642
#: ../blivet/partitioning.py:646
#, python-format
msgid ""
"partition is too large for %(format)s formatting (allowable size is "
"%(min_size)s to %(max_size)s)"
msgstr ""

#: ../blivet/partitioning.py:950
#: ../blivet/partitioning.py:962
msgid "Unable to allocate requested partition scheme."
msgstr ""

#: ../blivet/partitioning.py:985
#: ../blivet/partitioning.py:997
msgid "not enough free space after creating extended partition"
msgstr ""

#: ../blivet/partitioning.py:992
#: ../blivet/partitioning.py:1004
msgid "failed to allocate aligned partition"
msgstr ""

#: ../blivet/partitioning.py:1193
#: ../blivet/partitioning.py:1205
msgid "cannot reclaim more than request has grown"
msgstr ""

#: ../blivet/partitioning.py:1407
#: ../blivet/partitioning.py:1419
msgid "DiskChunk requests must be of type PartitionRequest"
msgstr ""

#: ../blivet/partitioning.py:1420
#: ../blivet/partitioning.py:1432
msgid "partitions allocated outside disklabel limits"
msgstr ""

#: ../blivet/partitioning.py:1505
#: ../blivet/partitioning.py:1517
msgid "VGChunk requests must be of type LVRequest"
msgstr ""

#. by now we have allocated the PVs so if there isn't enough
#. space in the VG we have a real problem
#: ../blivet/partitioning.py:2013
#: ../blivet/partitioning.py:2025
msgid "not enough space for LVM requests"
msgstr ""

Expand Down Expand Up @@ -315,15 +315,15 @@ msgstr ""
msgid "Cannot remove a member from existing %s array"
msgstr ""

#: ../blivet/formats/fs.py:923
#: ../blivet/formats/fs.py:932
msgid "EFI System Partition"
msgstr ""

#: ../blivet/formats/fs.py:1128
#: ../blivet/formats/fs.py:1137
msgid "Apple Bootstrap"
msgstr ""

#: ../blivet/formats/fs.py:1164
#: ../blivet/formats/fs.py:1173
msgid "Linux HFS+ ESP"
msgstr ""

Expand Down
19 changes: 16 additions & 3 deletions python-blivet.spec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
Summary: A python module for system storage configuration
Name: python-blivet
Url: https://storageapis.wordpress.com/projects/blivet
Version: 3.1.7
Version: 3.2.0

#%%global prerelease .b2
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
Expand Down Expand Up @@ -191,6 +191,20 @@ configuration.
%endif

%changelog
* Wed Jan 29 2020 Vojtech Trefny <[email protected]> - 3.2.0-1
- Align base sizes up if smaller than min I/O size. (dlehman)
- Make minimal and optimal alignment getters public. (dlehman)
- Add support for relabeling of the swap format (vtrefny)
- Define the 'relabels' method for all formats (vtrefny)
- Add support for LVMPV format resize (vtrefny)
- Add a new "id_path" attribute for iSCSI and FCoE disks (vtrefny)
- Do not load module when creating an FS instance (vtrefny)
- Add a simple script for running tests manually (vtrefny)
- Remove unused API code (jkonecny)
- devicetree.names is now a property (japokorn)
- initial PowerNV class support (dan)
- Use LUKS2 by default (vponcova)

* Wed Jan 29 2020 Vojtech Trefny <[email protected]> - 3.1.7-1
- Use SHA256 instead of MD5 for /proc/mounts hash calculation (vtrefny)
- Fix udev test names so they actually get run. (dlehman)
Expand All @@ -204,8 +218,7 @@ configuration.
- Override LVM skip-activation to allow for thorough removal. (dlehman)
- Add setters for requested_size/percent form LVMVolumeGroupDevice (vtrefny)
- Set min size for XFS to 16 MiB (vtrefny)
- Revert "Ignore invalid-overridden-method warning for abstract properties"
(vtrefny)
- Revert "Ignore invalid-overridden-method warning for abstract properties" (vtrefny)
- Fix invalid-overridden-method in events_test (vtrefny)

* Fri Oct 25 2019 Vojtech Trefny <[email protected]> - 3.1.6-1
Expand Down
25 changes: 25 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
3.2.0
======
* `Alignment to Minimal I/O Size`
* `LVMPhysicalVolume Resizable`
* `LUKS2`
* `Removed`
** `blivet.errors.UnknownSourceDeviceError`

Alignment to Minimal I/O Size
------------------------------
Newly created devices smaller than min I/O size are now automatically
aligned up.

LVMPhysicalVolume Resizable
----------------------------
LVM Physical Volume format can now be resized by Blivet.

LUKS2
------
LUKS2 is now used as default encryption if not specified otherwise.

Removed
--------
* ``blivet.errors.UnknownSourceDeviceError``

3.1.0
======
* `LUKS2`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def make_release_tree(self, base_dir, files):


setup(name='blivet',
version='3.1.7',
version='3.2.0',
cmdclass={"sdist": blivet_sdist},
description='Python module for system storage configuration',
author='David Lehman', author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion zanata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config xmlns="http://zanata.org/namespace/config/">
<url>https://fedora.zanata.org/</url>
<project>blivet</project>
<project-version>3.1</project-version>
<project-version>3.2</project-version>
<project-type>gettext</project-type>

</config>

0 comments on commit 196c4ad

Please sign in to comment.