Skip to content

Commit 2ba0ee9

Browse files
authored
feat: bump version to 0.3.2 (#330)
1 parent b055470 commit 2ba0ee9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

api/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self):
7878
self.CONSOLE_URL = get_env('CONSOLE_URL')
7979
self.API_URL = get_env('API_URL')
8080
self.APP_URL = get_env('APP_URL')
81-
self.CURRENT_VERSION = "0.3.1"
81+
self.CURRENT_VERSION = "0.3.2"
8282
self.COMMIT_SHA = get_env('COMMIT_SHA')
8383
self.EDITION = "SELF_HOSTED"
8484
self.DEPLOY_ENV = get_env('DEPLOY_ENV')

docker/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.1'
22
services:
33
# API service
44
api:
5-
image: langgenius/dify-api:0.3.1
5+
image: langgenius/dify-api:0.3.2
66
restart: always
77
environment:
88
# Startup mode, 'api' starts the API server.
@@ -110,7 +110,7 @@ services:
110110
# worker service
111111
# The Celery worker for processing the queue.
112112
worker:
113-
image: langgenius/dify-api:0.3.1
113+
image: langgenius/dify-api:0.3.2
114114
restart: always
115115
environment:
116116
# Startup mode, 'worker' starts the Celery worker for processing the queue.
@@ -156,7 +156,7 @@ services:
156156

157157
# Frontend web application.
158158
web:
159-
image: langgenius/dify-web:0.3.1
159+
image: langgenius/dify-web:0.3.2
160160
restart: always
161161
environment:
162162
EDITION: SELF_HOSTED

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dify-web",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)