diff options
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | debian/changelog | 15 | ||||
-rw-r--r-- | doc/RELEASE_NOTES | 30 | ||||
-rw-r--r-- | mic/__init__.py | 2 | ||||
-rw-r--r-- | packaging/mic.changes | 13 | ||||
-rw-r--r-- | packaging/mic.spec | 4 |
6 files changed, 57 insertions, 21 deletions
@@ -1,3 +1,17 @@ +Release 0.25 - Fri May 23 2014 - Gui Chen <gui.chen@intel.com> +===================================================================== + * new distribution support: Ubuntu 14.04 and Debian 7.0 + * generate manifest file to describe image information + * refactor archive and compress module + * support sparse handle for tar command + * replace system V with systemd on locale setting + * support lzop compress + * bug fix: + - fix logfile incomplete in release option + - fix config file disappear in bootstrap + - fix aarch64 bin_format + - fix pylint + Release 0.24 - Tue Mar 11 2014 - Gui Chen <gui.chen@intel.com> ===================================================================== * enhance to handle password with special characters diff --git a/debian/changelog b/debian/changelog index 05b6277..723e6bb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +mic (0.25~rc1) unstable; urgency=low + * new distribution support: Ubuntu 14.04 and Debian 7.0 + * generate manifest file to describe image information + * refactor archive and compress module + * support sparse handle for tar command + * replace system V with systemd on locale setting + * support lzop compress + * bug fix: + - fix logfile incomplete in release option + - fix config file disappear in bootstrap + - fix aarch64 bin_format + - fix pylint + + -- Gui Chen <gui.chen@intel.com> Thu, 24 Oct 2013 17:25:35 +0800 + mic (0.24) unstable; urgency=low * enhance to handle password with special characters * change python-zypp require to python-zypp-tizen diff --git a/doc/RELEASE_NOTES b/doc/RELEASE_NOTES index 2640441..fc4a425 100644 --- a/doc/RELEASE_NOTES +++ b/doc/RELEASE_NOTES @@ -1,31 +1,25 @@ -MIC Image Creator 0.24 Release Notes +MIC Image Creator 0.25 Release Notes ==================================== -Released March 11 2014 +Released May 23 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 -------------------------- - * enhance to handle password with special characters - * change python-zypp require to python-zypp-tizen - * add --repo comand option for local build - * add --user and --password option for %repo directive of ks file - * clean up some codes relevant to EULA agreement - * add hostname showing in log + * new distribution support: Ubuntu 14.04 and Debian 7.0 + * generate manifest file to describe image information + * refactor archive and compress module + * support sparse handle for tar command + * replace system V with systemd on locale setting + * support lzop compress Bug Fixes --------- - * fix chroot failed by space in image not enough - * fix obsolete packages incorrect handling - * fix yum backend failed to cache packages - * fix bare ip in no_proxy not working - * fix repeated log showing with yum backend - * fix loop device latency timing - * fix zypp failed to download by changing 'cachedir' - * fix 'mkfs' not working caused by mic-bootstrap install failed - - + * fix logfile incomplete in release option + * fix config file disappear in bootstrap + * fix aarch64 bin_format + * fix pylint Resource -------- diff --git a/mic/__init__.py b/mic/__init__.py index ba4da88..69716dd 100644 --- a/mic/__init__.py +++ b/mic/__init__.py @@ -16,7 +16,7 @@ import os, sys -__version__ = "0.24" +__version__ = "0.25" 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 4325f94..06f7a72 100644 --- a/packaging/mic.changes +++ b/packaging/mic.changes @@ -1,3 +1,16 @@ +* Fri May 23 2014 Gui Chen <gui.chen@intel.com> - 0.25 + * new distribution support: Ubuntu 14.04 and Debian 7.0 + * generate manifest file to describe image information + * refactor archive and compress module + * support sparse handle for tar command + * replace system V with systemd on locale setting + * support lzop compress + * bug fix: + - fix logfile incomplete in release option + - fix config file disappear in bootstrap + - fix aarch64 bin_format + - fix pylint + * Tue Mar 11 2014 Gui Chen <gui.chen@intel.com> - 0.24 * enhance to handle password with special characters * change python-zypp require to python-zypp-tizen diff --git a/packaging/mic.spec b/packaging/mic.spec index 9902d7f..0a7196e 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.24 +Version: 0.25 Release: %{?release_prefix}%{?opensuse_bs:<CI_CNT>.<B_CNT>}%{!?opensuse_bs:0} Group: Development/Tools License: GPLv2 |