diff options
-rwxr-xr-x | ChangeLog | 16 | ||||
-rwxr-xr-x | debian/changelog | 17 | ||||
-rwxr-xr-x | doc/RELEASE_NOTES | 26 | ||||
-rw-r--r-- | mic/__init__.py | 2 | ||||
-rwxr-xr-x | packaging/mic.changes | 15 | ||||
-rw-r--r-- | packaging/mic.spec | 2 |
6 files changed, 76 insertions, 2 deletions
@@ -1,3 +1,19 @@ +Release 0.27.6 - Fri Jun 30 2017 - Xiaojuan Mao <xiaojuan.mao@samsung.com> +===================================================================== + * Use cpio gzip in mic. + * fix corrupted log messages in log file + * change installed package name length from 20 to 50 + * print warning message for detecting rpm post script... + * display all rpm debug messages in debug mode + * display filesystem size of each images + * add SIGTERM handler for exit gracefully + * change tpk install error message format + * print package name, before install + * Modify the arguments that use cpio to generate image. + * Solve mic hang issue, add timeout to show failure. + * Solve issue:mic has error when env no_proxy is 165.xx.xxx... + * Change the order of generating image by cpio. + Release 0.27.5 - Fri Apr 28 2017 - Yuhuan Yang <yuhuan.yang@samsung.com> ===================================================================== * Solve image not clean after created, use e2fsck to clean image, relevant issue is NJTS-179 in JIRA. diff --git a/debian/changelog b/debian/changelog index 17b4d2a..ab2f437 100755 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +mic (0.27.6) unstable; urgency=low + * Use cpio gzip in mic. + * fix corrupted log messages in log file + * change installed package name length from 20 to 50 + * print warning message for detecting rpm post script... + * display all rpm debug messages in debug mode + * display filesystem size of each images + * add SIGTERM handler for exit gracefully + * change tpk install error message format + * print package name, before install + * Modify the arguments that use cpio to generate image. + * Solve mic hang issue, add timeout to show failure. + * Solve issue:mic has error when env no_proxy is 165.xx.xxx... + * Change the order of generating image by cpio. + + -- Xiaojuan Mao <xiaojuan.mao@samsung.com> Fri, 30 Jun 2017 15:00:00 +0800 + mic (0.27.5) unstable; urgency=low * Solve image not clean after created, use e2fsck to clean image, relevant issue is NJTS-179 in JIRA. diff --git a/doc/RELEASE_NOTES b/doc/RELEASE_NOTES index d0d0b62..087f388 100755 --- a/doc/RELEASE_NOTES +++ b/doc/RELEASE_NOTES @@ -1,3 +1,29 @@ +MIC Image Creator 0.27.6 Release Notes +====================================== +Released Jun 30 2017 + +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 cpio gzip in mic. + * fix corrupted log messages in log file + * change installed package name length from 20 to 50 + * print warning message for detecting rpm post script... + * display all rpm debug messages in debug mode + * display filesystem size of each images + * add SIGTERM handler for exit gracefully + * change tpk install error message format + * print package name, before install + * Modify the arguments that use cpio to generate image. + * Solve mic hang issue, add timeout to show failure. + * Solve issue:mic has error when env no_proxy is 165.xx.xxx... + * Change the order of generating image by cpio. + +Bug Fixes +--------- + MIC Image Creator 0.27.5 Release Notes ====================================== Released Apr 28 2017 diff --git a/mic/__init__.py b/mic/__init__.py index 8d4193b..2118f5c 100644 --- a/mic/__init__.py +++ b/mic/__init__.py @@ -16,7 +16,7 @@ import os, sys -__version__ = "0.27.5" +__version__ = "0.27.6" 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 0924630..4ad1480 100755 --- a/packaging/mic.changes +++ b/packaging/mic.changes @@ -1,3 +1,18 @@ +* Fri Jun 30 2017 Xiaojuan Mao <xiaojuan.mao@samsung.com> - 0.27.6 + * Use cpio gzip in mic. + * fix corrupted log messages in log file + * change installed package name length from 20 to 50 + * print warning message for detecting rpm post script... + * display all rpm debug messages in debug mode + * display filesystem size of each images + * add SIGTERM handler for exit gracefully + * change tpk install error message format + * print package name, before install + * Modify the arguments that use cpio to generate image. + * Solve mic hang issue, add timeout to show failure. + * Solve issue:mic has error when env no_proxy is 165.xx.xxx... + * Change the order of generating image by cpio. + * Fri Apr 28 2017 Yuhuan Yang <yuhuan.yang@samsung.com> - 0.27.5 * Solve image not clean after created, use e2fsck to clean image, relevant issue is NJTS-179 in JIRA. diff --git a/packaging/mic.spec b/packaging/mic.spec index 8fd3e57..2c967f0 100644 --- a/packaging/mic.spec +++ b/packaging/mic.spec @@ -9,7 +9,7 @@ Name: mic Summary: Image Creator for Linux Distributions -Version: 0.27.5 +Version: 0.27.6 Release: %{?release_prefix}%{?opensuse_bs:<CI_CNT>.<B_CNT>}%{!?opensuse_bs:0} Group: Development/Tools License: GPLv2 |