From 078ba9d87d1384aff2aabd4ba2f6364ff2a4971b Mon Sep 17 00:00:00 2001 From: alichinese Date: Fri, 11 Oct 2024 16:57:18 +0800 Subject: [PATCH] version: upgrade version to 0.1.0.7 * release log * 1, add mugentest function for OS test * 2, optimize deal function about build template Signed-off-by: alichinese --- src/oebuild/version.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/oebuild/version.py b/src/oebuild/version.py index efe6fe2..0d68656 100644 --- a/src/oebuild/version.py +++ b/src/oebuild/version.py @@ -10,4 +10,12 @@ MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. ''' -__version__ = '0.0.45.21' +# release log: +# 1, Mugentest is an open-source Linux-OS testing framework developed by openEuler. +# Oebuild integrates Mugentest, making it more convenient to test the operating system. +# 2, The handling of the openEuler build template has been optimized. The original +# repos field contained necessary repository download information for the build +# environment. However, since all repository information related to the build is now +# managed by manifest.yaml, the processing of the repos field will be done in list +# form rather than as a dictionary. +__version__ = '0.1.0.7' -- Gitee