From d098bdc59bb388091c31a50ba7a09abbe8830ec7 Mon Sep 17 00:00:00 2001 From: takatost Date: Sat, 15 Jun 2024 02:46:24 +0800 Subject: [PATCH] version to 0.6.11 (#5224) --- api/config.py | 2 +- api/pyproject.toml | 2 +- docker/docker-compose.yaml | 6 +++--- web/package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/api/config.py b/api/config.py index a57faba53b..0e7cef3286 100644 --- a/api/config.py +++ b/api/config.py @@ -117,7 +117,7 @@ class Config: # ------------------------ # General Configurations. # ------------------------ - self.CURRENT_VERSION = "0.6.10" + self.CURRENT_VERSION = "0.6.11" self.COMMIT_SHA = get_env('COMMIT_SHA') self.EDITION = get_env('EDITION') self.DEPLOY_ENV = get_env('DEPLOY_ENV') diff --git a/api/pyproject.toml b/api/pyproject.toml index 9f2786d406..b56556a62b 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -84,7 +84,7 @@ FIRECRAWL_API_KEY = "fc-" [tool.poetry] name = "dify-api" -version = "0.6.10" +version = "0.6.11" description = "" authors = ["Dify "] readme = "README.md" diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 45a97c9b74..433c47fc52 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -2,7 +2,7 @@ version: '3' services: # API service api: - image: langgenius/dify-api:0.6.10 + image: langgenius/dify-api:0.6.11 restart: always environment: # Startup mode, 'api' starts the API server. @@ -203,7 +203,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:0.6.10 + image: langgenius/dify-api:0.6.11 restart: always environment: CONSOLE_WEB_URL: '' @@ -344,7 +344,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:0.6.10 + image: langgenius/dify-web:0.6.11 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 7ff952ae05..a95b3a1b57 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "dify-web", - "version": "0.6.10", + "version": "0.6.11", "private": true, "scripts": { "dev": "next dev",