From 7ed24ee54bdd430ab376a2b07930383730fddabd Mon Sep 17 00:00:00 2001 From: dingjiahuichina Date: Wed, 17 Sep 2025 10:52:05 +0800 Subject: [PATCH] chore: update to 1.1.4 --- oedp/build/constants.sh | 2 +- oedp/build/oedp.spec | 5 ++++- oedp/build/static/oeDeploy.desktop | 2 +- oedp/src/constants/const.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/oedp/build/constants.sh b/oedp/build/constants.sh index 282cb37..93b59f0 100644 --- a/oedp/build/constants.sh +++ b/oedp/build/constants.sh @@ -26,5 +26,5 @@ BUILD_SCRIPT_DIR="${PROJECT_DIR}"/build # 存放构建中间产物的暂存目录 TEMP_DIR="${PROJECT_DIR}"/temp # 打包目录 -PACKING_DIR_NAME=oedp-1.1.3 +PACKING_DIR_NAME=oedp-1.1.4 PACKING_DIR="${TEMP_DIR}/${PACKING_DIR_NAME}" \ No newline at end of file diff --git a/oedp/build/oedp.spec b/oedp/build/oedp.spec index d2512da..dc112b3 100644 --- a/oedp/build/oedp.spec +++ b/oedp/build/oedp.spec @@ -1,6 +1,6 @@ %define _python_bytecompile_errors_terminate_build 0 Name: oedp -Version: 1.1.3 +Version: 1.1.4 Release: release_number Summary: openEuler deploy tool License: MulanPSL-2.0 @@ -73,6 +73,9 @@ fi %changelog +* Wed Sep 17 2025 Ding Jiahui - 1.1.4-0 +- Add Python 3.8 compatibility + * Sun Jul 27 2025 Ding Jiahui - 1.1.3-0 - Downlowd details when repo updating. - The operation log will be recorded in the plugin directory. diff --git a/oedp/build/static/oeDeploy.desktop b/oedp/build/static/oeDeploy.desktop index f85e835..1d8452d 100644 --- a/oedp/build/static/oeDeploy.desktop +++ b/oedp/build/static/oeDeploy.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Version=1.1.3 +Version=1.1.4 Type=Application Name=oeDeploy Exec=xdg-open /usr/share/applications/oeDeploy.html diff --git a/oedp/src/constants/const.py b/oedp/src/constants/const.py index 6578dae..3086973 100644 --- a/oedp/src/constants/const.py +++ b/oedp/src/constants/const.py @@ -15,7 +15,7 @@ import stat # oedp 版本信息 -VERSION = "1.1.3" +VERSION = "1.1.4" OK = 0 FAILED = 1 -- Gitee