From 29055e73c6bc0b6442ef43d357e15b921376c399 Mon Sep 17 00:00:00 2001 From: xuhy Date: Mon, 22 Jul 2024 15:40:53 +0800 Subject: [PATCH] Bump up to release 2.0.3 Change-Id: I7c07b4f29d6c6b01c3c52b6e50d64495aea9a82c Signed-off-by: xuhy --- ChangeLog | 13 +++++++++++++ debian/changelog | 16 ++++++++++++++++ doc/RELEASE_NOTES | 20 ++++++++++++++++++++ mic/__init__.py | 2 +- packaging/mic.changes | 12 ++++++++++++ packaging/mic.spec | 2 +- 6 files changed, 63 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ddc6548..06bb16d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Release 2.0.3 - Mon Jul. 22 2024 - Huayong Xu +===================================================================== + * Fix build errors on Ubuntu 24.04 + * Add new section 'runscript_out_bootstrap' for kickstart to run script + on host pc after image created. + * Replace SafeConfigParser with ConfigParser which is dropped in + python3.12 + * Replace setup module from distuils.core to setuptools + * Ignore the pylint warning of raising-bad-type and + unbalanced-tuple-unpacking in connection and grabber script + * Fix mic create image error: Rpmdb checksum is invalid: + dCDPT(pkg checksums) + Release 2.0.2 - Fri Apr. 19 2024 - Huayong Xu ===================================================================== * Fix the issue that mic lost dependency file in docker diff --git a/debian/changelog b/debian/changelog index 26b7284..bb4fff7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +mic (2.0.3) unstable; urgency=low + * Fix build errors on Ubuntu 24.04 + * Add new section 'runscript_out_bootstrap' for kickstart to run script + on host pc after image created. + * Replace SafeConfigParser with ConfigParser which is dropped in + python3.12 + * Replace setup module from distuils.core to setuptools + * Ignore the pylint warning of raising-bad-type and + unbalanced-tuple-unpacking in connection and grabber script + * Fix mic create image error: Rpmdb checksum is invalid: + dCDPT(pkg checksums) + + -- Xu Huayong Mon, 22 Jul 2024 15:00:00 +0800 + mic (2.0.2) unstable; urgency=low * Fix the issue that mic lost dependency file in docker * Fix the mic can't create image into specified folder which defined @@ -5,6 +19,8 @@ mic (2.0.2) unstable; urgency=low * Add the error message while no qemu for mic chroot * Adjust the format of Notification + -- Xu Huayong Fri, 19 Apr 2024 15:00:00 +0800 + mic (2.0.1) unstable; urgency=low * Support ubuntu 22.04 distro * Port code from python2.x to python3.x diff --git a/doc/RELEASE_NOTES b/doc/RELEASE_NOTES index 949299a..1dc66e1 100644 --- a/doc/RELEASE_NOTES +++ b/doc/RELEASE_NOTES @@ -1,3 +1,23 @@ +MIC Image Creator 2.0.3 Release Notes +====================================== +Released Jul 22 2024 + +This release note documents the changes included in the new release. And +the release contains new features. + +new features +-------------------------- + * Fix build errors on Ubuntu 24.04 + * Add new section 'runscript_out_bootstrap' for kickstart to run script + on host pc after image created. + * Replace SafeConfigParser with ConfigParser which is dropped in + python3.12 + * Replace setup module from distuils.core to setuptools + * Ignore the pylint warning of raising-bad-type and + unbalanced-tuple-unpacking in connection and grabber script + * Fix mic create image error: Rpmdb checksum is invalid: + dCDPT(pkg checksums) + MIC Image Creator 2.0.2 Release Notes ====================================== Released Apr 19 2024 diff --git a/mic/__init__.py b/mic/__init__.py index 79d8316..1c5dbc9 100755 --- a/mic/__init__.py +++ b/mic/__init__.py @@ -16,7 +16,7 @@ import os, sys -__version__ = "2.0.2" +__version__ = "2.0.3" 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 a949479..1a42d2f 100644 --- a/packaging/mic.changes +++ b/packaging/mic.changes @@ -1,3 +1,15 @@ +* Mon Jul 22 2024 Huayong Xu - 2.0.3 + * Fix build errors on Ubuntu 24.04 + * Add new section 'runscript_out_bootstrap' for kickstart to run script + on host pc after image created. + * Replace SafeConfigParser with ConfigParser which is dropped in + python3.12 + * Replace setup module from distuils.core to setuptools + * Ignore the pylint warning of raising-bad-type and + unbalanced-tuple-unpacking in connection and grabber script + * Fix mic create image error: Rpmdb checksum is invalid: + dCDPT(pkg checksums) + * Fri Apr 19 2024 Huayong Xu - 2.0.2 * Fix the issue that mic lost dependency file in docker * Fix the mic can't create image into specified folder which defined diff --git a/packaging/mic.spec b/packaging/mic.spec index 0162088..e6073c1 100755 --- a/packaging/mic.spec +++ b/packaging/mic.spec @@ -6,7 +6,7 @@ Name: mic Summary: Image Creator for Linux Distributions -Version: 2.0.2 +Version: 2.0.3 Release: %{?release_prefix}%{?opensuse_bs:.}%{!?opensuse_bs:0} Group: Development/Tools License: GPLv2 -- 2.34.1