Skip to content

Commit 8e75eb5

Browse files
committed
fix: update version to 0.15.5 in packaging and docker-compose files
Sgned-off-by: -LAN- <[email protected]>
1 parent 970508f commit 8e75eb5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.4",
12+
default="0.15.5",
1313
)
1414

1515
COMMIT_SHA: str = Field(

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.4
5+
image: langgenius/dify-api:0.15.5
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.4
28+
image: langgenius/dify-api:0.15.5
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.4
50+
image: langgenius/dify-web:0.15.5
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.4
396+
image: langgenius/dify-api:0.15.5
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.4
419+
image: langgenius/dify-api:0.15.5
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.4
441+
image: langgenius/dify-web:0.15.5
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.4",
3+
"version": "0.15.5",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)