ci: change version

This commit is contained in:
GuoQing Zhang
2025-08-28 19:12:58 +08:00
parent eaf6c9c9e9
commit 110cd0223a
4 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -53,7 +53,7 @@ services:
backend:
container_name: bisheng-backend
image: dataelement/bisheng-backend:v2.0.2
image: dataelement/bisheng-backend:v2.0.3
ports:
- "7860:7860"
environment:
@@ -93,7 +93,7 @@ services:
backend_worker:
container_name: bisheng-backend-worker
image: dataelement/bisheng-backend:v2.0.2
image: dataelement/bisheng-backend:v2.0.3
environment:
TZ: Asia/Shanghai
BS_MILVUS_CONNECTION_ARGS: '{"host":"milvus","port":"19530","user":"","password":"","secure":false}'
@@ -125,7 +125,7 @@ services:
frontend:
container_name: bisheng-frontend
image: dataelement/bisheng-frontend:v2.0.2
image: dataelement/bisheng-frontend:v2.0.3
ports:
- "3001:3001"
environment:
+1 -1
View File
@@ -6,7 +6,7 @@ from bisheng.processing.process import load_flow_from_json # noqa: E402
try:
# 通过ci去自动修改
__version__ = '2.0.2'
__version__ = '2.0.3'
except metadata.PackageNotFoundError:
# Case where package metadata is not available.
__version__ = ''
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bisheng"
version = "2.0.2"
version = "2.0.3"
description = "A Python package with a built-in web application"
authors = ["Dataelement <hanfeng@dataelem.com>"]
maintainers = [
+2 -2
View File
@@ -1,7 +1,7 @@
#! /bin/bash
old_version="2.0.0"
new_version="2.0.2"
old_version="2.0.2"
new_version="2.0.3"
sed -i.bak "s/$old_version/$new_version/g" ./docker/docker-compose.yml
sed -i.bak "s/$old_version/$new_version/g" ./src/backend/pyproject.toml
sed -i.bak "s/$old_version/$new_version/g" ./src/backend/bisheng/__init__.py