Skip to content

Commit

Permalink
fix: bisheng_langchain version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zgqgit committed Jan 3, 2025
1 parent 27dda16 commit 11ba51b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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.0.dev1
image: dataelement/bisheng-backend:v0.4.1
ports:
- "7860:7860"
environment:
Expand Down Expand Up @@ -94,7 +94,7 @@ services:

frontend:
container_name: bisheng-frontend
image: dataelement/bisheng-frontend:v0.4.0.dev1
image: dataelement/bisheng-frontend:v0.4.1
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.0.dev1'
__version__ = '0.4.1'
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.0.dev1"
version = "0.4.1"
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.0.dev1"
bisheng_langchain = "0.4.1"
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.0"
new_version="0.4.0.dev1"
old_version="0.4.0.dev1"
new_version="0.4.1"
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 11ba51b

Please sign in to comment.