bump up to 0.26 rc1
authorGui Chen <gui.chen@intel.com>
Tue, 14 Oct 2014 04:26:07 +0000 (04:26 +0000)
committeradmin <yuhuan.yang@samsung.com>
Thu, 4 Feb 2016 10:28:55 +0000 (18:28 +0800)
Change-Id: I47f65df512e74b7ba82efcaf0b81b75f9795bcea
Signed-off-by: Gui Chen <gui.chen@intel.com>
ChangeLog
debian/changelog
doc/RELEASE_NOTES
mic/__init__.py
packaging/mic.changes
packaging/mic.spec

index 11aeb1a..c40cd41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Release 0.26 - Tue Oct 14 2014 - Gui Chen <gui.chen@intel.com>
+=====================================================================
+  * 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 <gui.chen@intel.com>
 =====================================================================
   * new distribution support: Ubuntu 14.04 and Debian 7.0
index 646a318..1c7e366 100644 (file)
@@ -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 <gui.chen@intel.com>  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 <gui.chen@intel.com>  Thu, 24 Oct 2013 17:25:35 +0800
+ -- Gui Chen <gui.chen@intel.com>  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 <gui.chen@intel.com>  Thu, 24 Oct 2013 17:25:35 +0800
+ -- Gui Chen <gui.chen@intel.com>  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 <gui.chen@intel.com>  Thu, 24 Oct 2013 17:25:35 +0800
+ -- Gui Chen <gui.chen@intel.com>  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 <gui.chen@intel.com>  Thu, 24 Oct 2013 17:25:35 +0800
+ -- Gui Chen <gui.chen@intel.com>  Fri, 12 Dec 2013 17:25:35 +0800
 
 mic (0.22-1) unstable; urgency=low
    * use __version__ variable instead of VERSION file
index 86c1502..7d75462 100644 (file)
@@ -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
 --------
index 7d27fba..d636f49 100644 (file)
@@ -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')
index 83a804e..ee25132 100644 (file)
@@ -1,3 +1,17 @@
+* Tue Oct 14 2014 Gui Chen <gui.chen@intel.com> - 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 <gui.chen@intel.com> - 0.25.1
   * revert bind mount config file to instroot
   * fix xml requirements
index a56df95..85c68e3 100644 (file)
@@ -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:<CI_CNT>.<B_CNT>}%{!?opensuse_bs:0}
 Group:      Development/Tools
 License:    GPLv2