Skip to content

Commit 625aace

Browse files
authored
chore: bump version to 0.12.0 (#11056)
1 parent 98d85e6 commit 625aace

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

api/configs/packaging/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PackagingInfo(BaseSettings):
99

1010
CURRENT_VERSION: str = Field(
1111
description="Dify version",
12-
default="0.11.2",
12+
default="0.12.0",
1313
)
1414

1515
COMMIT_SHA: str = Field(

docker-legacy/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
# API service
44
api:
5-
image: langgenius/dify-api:0.11.2
5+
image: langgenius/dify-api:0.12.0
66
restart: always
77
environment:
88
# Startup mode, 'api' starts the API server.
@@ -227,7 +227,7 @@ services:
227227
# worker service
228228
# The Celery worker for processing the queue.
229229
worker:
230-
image: langgenius/dify-api:0.11.2
230+
image: langgenius/dify-api:0.12.0
231231
restart: always
232232
environment:
233233
CONSOLE_WEB_URL: ''
@@ -397,7 +397,7 @@ services:
397397

398398
# Frontend web application.
399399
web:
400-
image: langgenius/dify-web:0.11.2
400+
image: langgenius/dify-web:0.12.0
401401
restart: always
402402
environment:
403403
# The base URL of console application api server, refers to the Console base URL of WEB service if console domain is

docker/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ x-shared-env: &shared-api-worker-env
291291
services:
292292
# API service
293293
api:
294-
image: langgenius/dify-api:0.11.2
294+
image: langgenius/dify-api:0.12.0
295295
restart: always
296296
environment:
297297
# Use the shared environment variables.
@@ -311,7 +311,7 @@ services:
311311
# worker service
312312
# The Celery worker for processing the queue.
313313
worker:
314-
image: langgenius/dify-api:0.11.2
314+
image: langgenius/dify-api:0.12.0
315315
restart: always
316316
environment:
317317
# Use the shared environment variables.
@@ -330,7 +330,7 @@ services:
330330

331331
# Frontend web application.
332332
web:
333-
image: langgenius/dify-web:0.11.2
333+
image: langgenius/dify-web:0.12.0
334334
restart: always
335335
environment:
336336
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

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.11.2",
3+
"version": "0.12.0",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)