From e66563093ddd113b6247925c23cf8170787d294c Mon Sep 17 00:00:00 2001 From: ylzhangah <1194926515@qq.com> Date: Wed, 22 Oct 2025 11:45:44 +0800 Subject: [PATCH] fix the release to 0.10.1 --- deploy/chart/authhub/Chart.yaml | 4 ++-- deploy/chart/euler_copilot/values.yaml | 16 ++++++++-------- deploy/scripts/2-install-tools/install_tools.sh | 2 +- deploy/scripts/9-other-script/save_images.sh | 2 +- euler_copilot_framework.egg-info/PKG-INFO | 2 +- manual/source/conf.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/deploy/chart/authhub/Chart.yaml b/deploy/chart/authhub/Chart.yaml index c1029a168..2e081e34c 100644 --- a/deploy/chart/authhub/Chart.yaml +++ b/deploy/chart/authhub/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: authhub-chart description: AuthHub Helm部署包 type: application -version: 0.9.6 -appVersion: "0.9.6" +version: 0.10.1 +appVersion: "0.10.1" diff --git a/deploy/chart/euler_copilot/values.yaml b/deploy/chart/euler_copilot/values.yaml index abb4c318f..095c27dd5 100644 --- a/deploy/chart/euler_copilot/values.yaml +++ b/deploy/chart/euler_copilot/values.yaml @@ -122,8 +122,8 @@ euler_copilot: framework: # [必填] 是否部署Framework后端框架服务 enabled: true - # 镜像设置;默认为hub.oepkgs.net/neocopilot/euler-copilot-framework:0.9.6-x86 - # 镜像标签:["0.9.6-x86", "0.9.6-arm"] + # 镜像设置;默认为hub.oepkgs.net/neocopilot/euler-copilot-framework:0.10.1-x86 + # 镜像标签:["0.10.1-x86", "0.10.1-arm"] image: # 容器根目录只读 readOnly: @@ -139,8 +139,8 @@ euler_copilot: web: # [必填] 是否部署Web前端用户界面 enabled: true - # 镜像设置;默认为hub.oepkgs.net/neocopilot/euler-copilot-web:0.9.6-x86 - # 镜像标签:["0.9.6-x86", "0.9.6-arm"] + # 镜像设置;默认为hub.oepkgs.net/neocopilot/euler-copilot-web:0.10.1-x86 + # 镜像标签:["0.10.1-x86", "0.10.1-arm"] image: # 容器根目录只读 readOnly: @@ -156,8 +156,8 @@ euler_copilot: rag_web: # [必填] 是否部署RAG Web前端用户界面 enabled: true - # 镜像设置;默认为hub.oepkgs.net/neocopilot/data_chain_web:0.9.6-x86 - # 镜像标签:["0.9.6-x86", "0.9.6-arm"] + # 镜像设置;默认为hub.oepkgs.net/neocopilot/data_chain_web:0.10.1-x86 + # 镜像标签:["0.10.1-x86", "0.10.1-arm"] image: # 容器根目录只读 readOnly: @@ -173,8 +173,8 @@ euler_copilot: rag: # [必填] 是否部署RAG后端服务 enabled: true - # 镜像设置;默认为hub.oepkgs.net/neocopilot/data_chain_back_end:0.9.6-x86 - # 镜像标签:["0.9.6-x86", "0.9.6-arm"] + # 镜像设置;默认为hub.oepkgs.net/neocopilot/data_chain_back_end:0.10.1-x86 + # 镜像标签:["0.10.1-x86", "0.10.1-arm"] image: # 容器根目录只读 readOnly: diff --git a/deploy/scripts/2-install-tools/install_tools.sh b/deploy/scripts/2-install-tools/install_tools.sh index af5c4778c..2b4f641df 100755 --- a/deploy/scripts/2-install-tools/install_tools.sh +++ b/deploy/scripts/2-install-tools/install_tools.sh @@ -3,7 +3,7 @@ GITHUB_MIRROR="https://gh-proxy.com" ARCH=$(uname -m) TOOLS_DIR="/home/eulercopilot/tools" -eulercopilot_version=0.9.6 +eulercopilot_version=0.10.1 SCRIPT_PATH="$( cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 diff --git a/deploy/scripts/9-other-script/save_images.sh b/deploy/scripts/9-other-script/save_images.sh index 81dabf802..081dc3769 100755 --- a/deploy/scripts/9-other-script/save_images.sh +++ b/deploy/scripts/9-other-script/save_images.sh @@ -8,7 +8,7 @@ BLUE='\033[0;34m' NC='\033[0m' # 恢复默认颜色 # 默认配置 -eulercopilot_version="0.9.6" +eulercopilot_version="0.10.1" ARCH_SUFFIX="" OUTPUT_DIR="/home/eulercopilot/images/${eulercopilot_version}" diff --git a/euler_copilot_framework.egg-info/PKG-INFO b/euler_copilot_framework.egg-info/PKG-INFO index 768d3f89f..f4095670c 100644 --- a/euler_copilot_framework.egg-info/PKG-INFO +++ b/euler_copilot_framework.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: euler-copilot-framework -Version: 0.9.6 +Version: 0.10.1 Summary: EulerCopilot 后端服务 Requires-Python: ==3.11.6 License-File: LICENSE diff --git a/manual/source/conf.py b/manual/source/conf.py index 2085545c3..f9a7a23e7 100644 --- a/manual/source/conf.py +++ b/manual/source/conf.py @@ -6,7 +6,7 @@ from pathlib import Path project = "openEuler Intelligence Framework" copyright = "2025, Huawei Technologies Co., Ltd." author = "sig-intelligence" -release = "0.9.6" +release = "0.10.1" extensions = [ "sphinx.ext.autodoc", diff --git a/pyproject.toml b/pyproject.toml index 8a34b17dd..bb829574e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "euler-copilot-framework" -version = "0.9.6" +version = "0.10.1" description = "EulerCopilot 后端服务" requires-python = "==3.11.6" dependencies = [ @@ -58,4 +58,4 @@ requires = ["setuptools>=65"] build-backend = "setuptools.build_meta" [tool.setuptools] -packages = ["apps"] # 仅包含apps目录 \ No newline at end of file +packages = ["apps"] # 仅包含apps目录 -- Gitee