From 85cc36cfcff9bf656b0a0d49d6897bdc398a8435 Mon Sep 17 00:00:00 2001 From: Gui Chen Date: Tue, 14 Oct 2014 04:26:07 +0000 Subject: [PATCH] bump up to 0.26 rc1 Change-Id: I47f65df512e74b7ba82efcaf0b81b75f9795bcea Signed-off-by: Gui Chen --- ChangeLog | 14 ++++++++++++++ debian/changelog | 23 +++++++++++++++++++---- doc/RELEASE_NOTES | 16 ++++++++++++---- mic/__init__.py | 2 +- packaging/mic.changes | 14 ++++++++++++++ packaging/mic.spec | 4 ++-- 6 files changed, 62 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 11aeb1a..c40cd41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Release 0.26 - Tue Oct 14 2014 - Gui Chen +===================================================================== + * add new arch MIPS support + * add qcow2 image format support + * add strict mode for package installing + * enable ssl_verify option in config file + * enhance checksums of outputs: md5sum, sha1sum, sha256sum + * enhance VCS info in yum backend + * bug fix: + - fix real path of device mapper causing initrd failure + - fix qemu arm and arm64 issues + - fix AttributeError in zypp backend + - fix 'python-xml' depends used by cElements + Release 0.25 - Fri May 23 2014 - Gui Chen ===================================================================== * new distribution support: Ubuntu 14.04 and Debian 7.0 diff --git a/debian/changelog b/debian/changelog index 646a318..1c7e366 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,23 @@ +mic (0.26~rc1) unstable; urgency=low + * add new arch MIPS support + * add qcow2 image format support + * add strict mode for package installing + * enable ssl_verify option in config file + * enhance checksums of outputs: md5sum, sha1sum, sha256sum + * enhance VCS info in yum backend + * bug fix: + - fix real path of device mapper causing initrd failure + - fix qemu arm and arm64 issues + - fix AttributeError in zypp backend + - fix 'python-xml' depends used by cElements + + -- Gui Chen Tue, 24 Oct 2014 17:25:35 +0800 + mic (0.25.1) unstable; urgency=low * revert bind mount config file to instroot * fix xml requirements - -- Gui Chen Thu, 24 Oct 2013 17:25:35 +0800 + -- Gui Chen Fri, 28 May 2014 17:25:35 +0800 mic (0.25) unstable; urgency=low * new distribution support: Ubuntu 14.04 and Debian 7.0 @@ -17,7 +32,7 @@ mic (0.25) unstable; urgency=low - fix aarch64 bin_format - fix pylint - -- Gui Chen Thu, 24 Oct 2013 17:25:35 +0800 + -- Gui Chen Fri, 23 May 2014 17:25:35 +0800 mic (0.24) unstable; urgency=low * enhance to handle password with special characters @@ -36,7 +51,7 @@ mic (0.24) unstable; urgency=low - fix zypp failed to download by changing 'cachedir' - fix 'mkfs' not working caused by mic-bootstrap install failed - -- Gui Chen Thu, 24 Oct 2013 17:25:35 +0800 + -- Gui Chen Tue, 11 Mar 2014 17:25:35 +0800 mic (0.23-1) unstable; urgency=low * new distribution support: Ubuntu 13.10 and OpenSUSE 13.1 @@ -51,7 +66,7 @@ mic (0.23-1) unstable; urgency=low - fix detailed error messages missing in mounting - fix version comparing issue of urlgrabber in Fedora - -- Gui Chen Thu, 24 Oct 2013 17:25:35 +0800 + -- Gui Chen Fri, 12 Dec 2013 17:25:35 +0800 mic (0.22-1) unstable; urgency=low * use __version__ variable instead of VERSION file diff --git a/doc/RELEASE_NOTES b/doc/RELEASE_NOTES index 86c1502..7d75462 100644 --- a/doc/RELEASE_NOTES +++ b/doc/RELEASE_NOTES @@ -1,17 +1,25 @@ -MIC Image Creator 0.25.1 Release Notes +MIC Image Creator 0.26 Release Notes ====================================== -Released May 28 2014 +Released Oct 14 2014 This release note documents the changes included in the new release. And the release contains new features, enhancements and bug fixes. New Features & Ehancements -------------------------- + * add new arch MIPS support + * add qcow2 image format support + * add strict mode for package installing + * enable ssl_verify option in config file + * enhance checksums of outputs: md5sum, sha1sum, sha256sum + * enhance VCS info in yum backend Bug Fixes --------- - * revert bind mount config file to instroot - * fix xml requirements + * fix real path of device mapper causing initrd failure + * fix qemu arm and arm64 issues + * fix AttributeError in zypp backend + * fix 'python-xml' depends used by cElements Resource -------- diff --git a/mic/__init__.py b/mic/__init__.py index 7d27fba..d636f49 100644 --- a/mic/__init__.py +++ b/mic/__init__.py @@ -16,7 +16,7 @@ import os, sys -__version__ = "0.25.1" +__version__ = "0.26" cur_path = os.path.dirname(__file__) or '.' sys.path.insert(0, cur_path + '/3rdparty') diff --git a/packaging/mic.changes b/packaging/mic.changes index 83a804e..ee25132 100644 --- a/packaging/mic.changes +++ b/packaging/mic.changes @@ -1,3 +1,17 @@ +* Tue Oct 14 2014 Gui Chen - 0.26 + * add new arch MIPS support + * add qcow2 image format support + * add strict mode for package installing + * enable ssl_verify option in config file + * enhance checksums of outputs: md5sum, sha1sum, sha256sum + * enhance VCS info in yum backend + * bug fix: + - fix real path of device mapper causing initrd failure + - fix qemu arm and arm64 issues + - fix AttributeError in zypp backend + - fix 'python-xml' depends used by cElements + + * Fri May 28 2014 Gui Chen - 0.25.1 * revert bind mount config file to instroot * fix xml requirements diff --git a/packaging/mic.spec b/packaging/mic.spec index a56df95..85c68e3 100644 --- a/packaging/mic.spec +++ b/packaging/mic.spec @@ -1,6 +1,6 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define rc_version 0 +%define rc_version 1 %if 0%{?rc_version} %define release_prefix 0.rc%{rc_version}. @@ -8,7 +8,7 @@ Name: mic Summary: Image Creator for Linux Distributions -Version: 0.25.1 +Version: 0.26 Release: %{?release_prefix}%{?opensuse_bs:.}%{!?opensuse_bs:0} Group: Development/Tools License: GPLv2 -- 2.7.4