Skip to content

Commit 3b8234e

Browse files
authored
feat: bump version to 0.3.13 (#830)
1 parent 0feb0bf commit 3b8234e

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
@@ -98,7 +98,7 @@ def __init__(self):
9898
self.CONSOLE_URL = get_env('CONSOLE_URL')
9999
self.API_URL = get_env('API_URL')
100100
self.APP_URL = get_env('APP_URL')
101-
self.CURRENT_VERSION = "0.3.12"
101+
self.CURRENT_VERSION = "0.3.13"
102102
self.COMMIT_SHA = get_env('COMMIT_SHA')
103103
self.EDITION = "SELF_HOSTED"
104104
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.12
5+
image: langgenius/dify-api:0.3.13
66
restart: always
77
environment:
88
# Startup mode, 'api' starts the API server.
@@ -124,7 +124,7 @@ services:
124124
# worker service
125125
# The Celery worker for processing the queue.
126126
worker:
127-
image: langgenius/dify-api:0.3.12
127+
image: langgenius/dify-api:0.3.13
128128
restart: always
129129
environment:
130130
# Startup mode, 'worker' starts the Celery worker for processing the queue.
@@ -176,7 +176,7 @@ services:
176176

177177
# Frontend web application.
178178
web:
179-
image: langgenius/dify-web:0.3.12
179+
image: langgenius/dify-web:0.3.13
180180
restart: always
181181
environment:
182182
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.12",
3+
"version": "0.3.13",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)