diff --git a/api/configs/packaging/__init__.py b/api/configs/packaging/__init__.py index cd5dc78c49f725..91d55c12524ffa 100644 --- a/api/configs/packaging/__init__.py +++ b/api/configs/packaging/__init__.py @@ -9,7 +9,7 @@ class PackagingInfo(BaseSettings): CURRENT_VERSION: str = Field( description="Dify version", - default="1.0.0-beta1", + default="1.0.0-beta.1", ) COMMIT_SHA: str = Field( diff --git a/docker-legacy/docker-compose.yaml b/docker-legacy/docker-compose.yaml index 5d2da8d8d0f645..495a08110fbf74 100644 --- a/docker-legacy/docker-compose.yaml +++ b/docker-legacy/docker-compose.yaml @@ -2,7 +2,7 @@ version: '3' services: # API service api: - image: langgenius/dify-api:1.0.0-beta1 + image: langgenius/dify-api:1.0.0-beta.1 restart: always environment: # Startup mode, 'api' starts the API server. @@ -227,7 +227,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:1.0.0-beta1 + image: langgenius/dify-api:1.0.0-beta.1 restart: always environment: CONSOLE_WEB_URL: '' @@ -397,7 +397,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:1.0.0-beta1 + image: langgenius/dify-web:1.0.0-beta.1 restart: always environment: # The base URL of console application api server, refers to the Console base URL of WEB service if console domain is diff --git a/web/package.json b/web/package.json index 49fd5dc2e2d645..7b5006254c34bf 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "1.0.0-beta1", + "version": "1.0.0-beta.1", "private": true, "engines": { "node": ">=18.17.0"