From 7315be4164894af0fefe0fcfe7630e0dfdc0021f Mon Sep 17 00:00:00 2001 From: dingjiahuichina Date: Mon, 18 Aug 2025 23:08:45 +0800 Subject: [PATCH] chore: update oedp to 1.1.3 --- oedp/build/constants.sh | 2 +- oedp/build/oedp.spec | 2 +- oedp/build/static/oeDeploy.desktop | 2 +- oedp/src/constants/const.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/oedp/build/constants.sh b/oedp/build/constants.sh index 1ccd928..282cb37 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.2 +PACKING_DIR_NAME=oedp-1.1.3 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 e4bf17e..d2512da 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.2 +Version: 1.1.3 Release: release_number Summary: openEuler deploy tool License: MulanPSL-2.0 diff --git a/oedp/build/static/oeDeploy.desktop b/oedp/build/static/oeDeploy.desktop index 5b5cca7..f85e835 100644 --- a/oedp/build/static/oeDeploy.desktop +++ b/oedp/build/static/oeDeploy.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Version=1.1.2 +Version=1.1.3 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 48da440..6578dae 100644 --- a/oedp/src/constants/const.py +++ b/oedp/src/constants/const.py @@ -15,7 +15,7 @@ import stat # oedp 版本信息 -VERSION = "1.1.2" +VERSION = "1.1.3" OK = 0 FAILED = 1 -- Gitee