Skip to content

Commit

Permalink
ci: change version
Browse files Browse the repository at this point in the history
  • Loading branch information
zgqgit committed Jan 9, 2025
1 parent b9f3555 commit 515dc5d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set python version 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.15
python-version: 3.10.*

- name: Build PyPi bisheng-langchain and push
id: pypi_build_bisheng_langchain
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:

backend:
container_name: bisheng-backend
image: dataelement/bisheng-backend:v0.4.1.1
image: dataelement/bisheng-backend:v0.4.1.2
ports:
- "7860:7860"
environment:
Expand Down Expand Up @@ -94,7 +94,7 @@ services:

frontend:
container_name: bisheng-frontend
image: dataelement/bisheng-frontend:v0.4.1.1
image: dataelement/bisheng-frontend:v0.4.1.2
ports:
- "3001:3001"
environment:
Expand Down
2 changes: 1 addition & 1 deletion src/backend/bisheng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

try:
# 通过ci去自动修改
__version__ = '0.4.1.1'
__version__ = '0.4.1.2'
except metadata.PackageNotFoundError:
# Case where package metadata is not available.
__version__ = ''
Expand Down
4 changes: 2 additions & 2 deletions src/backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bisheng"
version = "0.4.1.1"
version = "0.4.1.2"
description = "A Python package with a built-in web application"
authors = ["Dataelement <[email protected]>"]
maintainers = [
Expand All @@ -18,7 +18,7 @@ include = ["./bisheng/*", "bisheng/**/*"]
bisheng = "bisheng.__main__:main"

[tool.poetry.dependencies]
bisheng_langchain = "0.4.1.1"
bisheng_langchain = "0.4.1.2"
bisheng_pyautogen = "0.3.2"
langchain = "^0.2.16"
langchain_experimental = "*"
Expand Down
4 changes: 2 additions & 2 deletions update.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/bash

old_version="0.4.1"
new_version="0.4.1.1"
old_version="0.4.1.1"
new_version="0.4.1.2"
sed -i "s/$old_version/$new_version/g" ./docker/docker-compose.yml
sed -i "s/$old_version/$new_version/g" ./src/backend/pyproject.toml
sed -i "s/$old_version/$new_version/g" ./src/backend/bisheng/__init__.py

0 comments on commit 515dc5d

Please sign in to comment.