bump up to release 0.27.8
authormao xiaojuan <xiaojuan.mao@samsung.com>
Fri, 26 Jan 2018 09:28:54 +0000 (17:28 +0800)
committeryuhuan.yang <yuhuan.yang@samsung.com>
Tue, 30 Jan 2018 05:34:41 +0000 (13:34 +0800)
Change-Id: I7340bb2cbd256a2f33ed082e29507e99a289ead5

ChangeLog
debian/changelog
doc/RELEASE_NOTES
mic/__init__.py
packaging/mic.changes
packaging/mic.spec

index 2872b8c..3d0f0a9 100755 (executable)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+Release 0.27.8 - Fri Jan. 26 2018 - Xiaojuan Mao <xiaojuan.mao@samsung.com>
+=====================================================================
+  * Use SHA512 instead of MD5 to encrypt root password
+  * Fix the bug that use local mic-bootstrap to run mic.
+  * Support local mic-bootstrap rpm package to run mic.
+  * Another method of install tpk.
+  * The value of fstype is not cpio, an image is generated by cpio.
+  * When increase rpm release number, user can use --local-pkgs-path to install local pkgs.
+  * use the value of --pack-to option as filename to match all outputs
+  * support both %runscript and %post-umount to perform scripts before packaging
+  * support multiple mic execution at same time
+  * add --use-mic-in-bootstrap option
+  * Display all rpm debug messages with --rpm-debug
+  * call copy_attachment() after configure() and move attachment files
+  * Add init_expand option to partition
+  * add no_shrink option to partition, fix parameter of disk.expand()
+  * Setup environment to perform signing script
+  * if post scripts fails, CreatorError is raised to catch script errors such as signing error
+  * use registered qemu emulator filename if already registered.
+
 Release 0.27.7 - Fri Sep. 15 2017 - Yuhuan Yang <yuhuan.yang@samsung.com>
 =====================================================================
   * Timezone setting change
index 0d45971..d606408 100755 (executable)
@@ -1,3 +1,24 @@
+mic (0.27.8) unstable; urgency=low
+  * Use SHA512 instead of MD5 to encrypt root password
+  * Fix the bug that use local mic-bootstrap to run mic.
+  * Support local mic-bootstrap rpm package to run mic.
+  * Another method of install tpk.
+  * The value of fstype is not cpio, an image is generated by cpio.
+  * When increase rpm release number, user can use --local-pkgs-path to install local pkgs.
+  * use the value of --pack-to option as filename to match all outputs
+  * support both %runscript and %post-umount to perform scripts before packaging
+  * support multiple mic execution at same time
+  * add --use-mic-in-bootstrap option
+  * Display all rpm debug messages with --rpm-debug
+  * call copy_attachment() after configure() and move attachment files
+  * Add init_expand option to partition
+  * add no_shrink option to partition, fix parameter of disk.expand()
+  * Setup environment to perform signing script
+  * if post scripts fails, CreatorError is raised to catch script errors such as signing error
+  * use registered qemu emulator filename if already registered.
+
+ -- Xiaojuan Mao <xiaojuan.mao@samsung.com>  Fri, 26 Jan 2018 17:00:00 +0800
+
 mic (0.27.7) unstable; urgency=low
   * Timezone setting change
   * Run certain script before creation of tar.gz image
index 7543496..48290d6 100755 (executable)
@@ -1,3 +1,31 @@
+MIC Image Creator 0.27.8 Release Notes
+======================================
+Released Jan 26 2018
+This release note documents the changes included in the new release. And
+the release contains new features, enhancements and bug fixes.
+New Features & Enhancements
+--------------------------
+  * Use SHA512 instead of MD5 to encrypt root password
+  * Support local mic-bootstrap rpm package to run mic.
+  * Another method of install tpk.
+  * The value of fstype is not cpio, an image is generated by cpio.
+  * When increase rpm release number, user can use --local-pkgs-path to install local pkgs.
+  * use the value of --pack-to option as filename to match all outputs
+  * support both %runscript and %post-umount to perform scripts before packaging
+  * support multiple mic execution at same time
+  * add --use-mic-in-bootstrap option
+  * Display all rpm debug messages with --rpm-debug
+  * call copy_attachment() after configure() and move attachment files
+  * Add init_expand option to partition
+  * add no_shrink option to partition, fix parameter of disk.expand()
+  * Setup environment to perform signing script
+  * if post scripts fails, CreatorError is raised to catch script errors such as signing error
+  * use registered qemu emulator filename if already registered.
+
+Bug Fixes
+---------
+  * Fix the bug that use local mic-bootstrap to run mic.
+
 MIC Image Creator 0.27.7 Release Notes
 ======================================
 Released Sep 15 2017
index d80b6c1..af52f9b 100644 (file)
@@ -16,7 +16,7 @@
 
 import os, sys
 
-__version__ = "0.27.7"
+__version__ = "0.27.8"
 
 cur_path = os.path.dirname(__file__) or '.'
 sys.path.insert(0, cur_path + '/3rdparty')
index 01dfd3c..9d4dd23 100755 (executable)
@@ -1,3 +1,22 @@
+* Fri Jan 26 2018 Xiaojuan Mao <xiaojuan.mao@samsung.com> - 0.27.8
+  * Use SHA512 instead of MD5 to encrypt root password
+  * Fix the bug that use local mic-bootstrap to run mic.
+  * Support local mic-bootstrap rpm package to run mic.
+  * Another method of install tpk.
+  * The value of fstype is not cpio, an image is generated by cpio.
+  * When increase rpm release number, user can use --local-pkgs-path to install local pkgs.
+  * use the value of --pack-to option as filename to match all outputs
+  * support both %runscript and %post-umount to perform scripts before packaging
+  * support multiple mic execution at same time
+  * add --use-mic-in-bootstrap option
+  * Display all rpm debug messages with --rpm-debug
+  * call copy_attachment() after configure() and move attachment files
+  * Add init_expand option to partition
+  * add no_shrink option to partition, fix parameter of disk.expand()
+  * Setup environment to perform signing script
+  * if post scripts fails, CreatorError is raised to catch script errors such as signing error
+  * use registered qemu emulator filename if already registered.
+
 * Fri Sep 15 2017 Yuhuan Yang <yuhuan.yang@samsung.com> - 0.27.7
   * Timezone setting change
   * Run certain script before creation of tar.gz image
index 98e7e53..a389929 100644 (file)
@@ -9,7 +9,7 @@
 
 Name:       mic
 Summary:    Image Creator for Linux Distributions
-Version:    0.27.7
+Version:    0.27.8
 Release:    %{?release_prefix}%{?opensuse_bs:<CI_CNT>.<B_CNT>}%{!?opensuse_bs:0}
 Group:      Development/Tools
 License:    GPLv2