Skip to content

Commit 1e73f63

Browse files
authored
chore: update version to 0.15.2 in packaging and docker configurations (#12940)
Signed-off-by: -LAN- <[email protected]>
1 parent d167d5b commit 1e73f63

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

api/configs/packaging/__init__.py

+1-1
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.15.1",
12+
default="0.15.2",
1313
)
1414

1515
COMMIT_SHA: str = Field(

docker-legacy/docker-compose.yaml

+3-3
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.15.1
5+
image: langgenius/dify-api:0.15.2
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.15.1
230+
image: langgenius/dify-api:0.15.2
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.15.1
400+
image: langgenius/dify-web:0.15.2
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-template.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ x-shared-env: &shared-api-worker-env
22
services:
33
# API service
44
api:
5-
image: langgenius/dify-api:0.15.1
5+
image: langgenius/dify-api:0.15.2
66
restart: always
77
environment:
88
# Use the shared environment variables.
@@ -25,7 +25,7 @@ services:
2525
# worker service
2626
# The Celery worker for processing the queue.
2727
worker:
28-
image: langgenius/dify-api:0.15.1
28+
image: langgenius/dify-api:0.15.2
2929
restart: always
3030
environment:
3131
# Use the shared environment variables.
@@ -47,7 +47,7 @@ services:
4747

4848
# Frontend web application.
4949
web:
50-
image: langgenius/dify-web:0.15.1
50+
image: langgenius/dify-web:0.15.2
5151
restart: always
5252
environment:
5353
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

docker/docker-compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ x-shared-env: &shared-api-worker-env
393393
services:
394394
# API service
395395
api:
396-
image: langgenius/dify-api:0.15.1
396+
image: langgenius/dify-api:0.15.2
397397
restart: always
398398
environment:
399399
# Use the shared environment variables.
@@ -416,7 +416,7 @@ services:
416416
# worker service
417417
# The Celery worker for processing the queue.
418418
worker:
419-
image: langgenius/dify-api:0.15.1
419+
image: langgenius/dify-api:0.15.2
420420
restart: always
421421
environment:
422422
# Use the shared environment variables.
@@ -438,7 +438,7 @@ services:
438438

439439
# Frontend web application.
440440
web:
441-
image: langgenius/dify-web:0.15.1
441+
image: langgenius/dify-web:0.15.2
442442
restart: always
443443
environment:
444444
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dify-web",
3-
"version": "0.15.1",
3+
"version": "0.15.2",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)