From 20e5c9991e69f5f06a9f59b6d0e7abe64cc42c5a Mon Sep 17 00:00:00 2001 From: David Lehman Date: Fri, 18 Jan 2013 15:10:10 -0600 Subject: [PATCH] New version: blivet-0.3-1 --- README | 2 +- blivet.spec | 13 +++++++++---- setup.py | 4 ++-- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README b/README index b0cc54fb1..f5e638741 100644 --- a/README +++ b/README @@ -1 +1 @@ -blivet is a python module for examining and modifying the system's storage configuration. +Blivet is a python module for system storage configuration. diff --git a/blivet.spec b/blivet.spec index 90d2e0912..0cd22ed12 100644 --- a/blivet.spec +++ b/blivet.spec @@ -1,8 +1,7 @@ -# TODO: finalize summary/description text here, in setup.py and in README -Summary: A python library for working with system storage +Summary: A python module for system storage configuration Name: blivet Url: http://fedoraproject.org/wiki/blivet -Version: 0.2 +Version: 0.3 Release: 1%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -44,7 +43,7 @@ Requires: iscsi-initiator-utils-devel >= %{iscsiver} %description -The blivet package is a python module for examining and modifying storage configuration. +The blivet package is a full-featured python module for examining and modifying storage configuration. %prep %setup -q @@ -66,6 +65,12 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Fri Jan 18 2013 David Lehman - 0.2-1 +- Add Requires: iscsi-initiator-utils, fcoe-utils, device-mapper-multipath. (dlehman) +- Use a threading lock to control program log output. (dlehman) +- Fix reference to data to refer to ksdata in Blivet constructor. (dlehman) +- Remove the loop around proc.communicate in util._run_program. (dlehman) + * Tue Jan 15 2013 David Lehman 0.2-1 - Updated source from final pre-split anaconda source. - Renamed pyanaconda.storage to blivet throughout. diff --git a/setup.py b/setup.py index 819090430..ba9188211 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ from distutils.core import setup -setup(name='blivet', version='0.2', - description='Python module for working with system storage', +setup(name='blivet', version='0.3', + description='Python module for system storage configuration', author='David Lehman', author_email='dlehman@redhat.com', url='http://fedoraproject.org/wiki/blivet', packages=['blivet', 'blivet.devicelibs', 'blivet.formats'])