Skip to content

Commit bf90d34

Browse files
authored
chore: update version to 1.1.2 in configuration and Docker files (#16457)
Signed-off-by: -LAN- <[email protected]>
1 parent 383af7b commit bf90d34

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="1.1.1",
12+
default="1.1.2",
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:1.1.1
5+
image: langgenius/dify-api:1.1.2
66
restart: always
77
environment:
88
# Use the shared environment variables.
@@ -29,7 +29,7 @@ services:
2929
# worker service
3030
# The Celery worker for processing the queue.
3131
worker:
32-
image: langgenius/dify-api:1.1.1
32+
image: langgenius/dify-api:1.1.2
3333
restart: always
3434
environment:
3535
# Use the shared environment variables.
@@ -53,7 +53,7 @@ services:
5353

5454
# Frontend web application.
5555
web:
56-
image: langgenius/dify-web:1.1.1
56+
image: langgenius/dify-web:1.1.2
5757
restart: always
5858
environment:
5959
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

docker/docker-compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ x-shared-env: &shared-api-worker-env
432432
services:
433433
# API service
434434
api:
435-
image: langgenius/dify-api:1.1.1
435+
image: langgenius/dify-api:1.1.2
436436
restart: always
437437
environment:
438438
# Use the shared environment variables.
@@ -459,7 +459,7 @@ services:
459459
# worker service
460460
# The Celery worker for processing the queue.
461461
worker:
462-
image: langgenius/dify-api:1.1.1
462+
image: langgenius/dify-api:1.1.2
463463
restart: always
464464
environment:
465465
# Use the shared environment variables.
@@ -483,7 +483,7 @@ services:
483483

484484
# Frontend web application.
485485
web:
486-
image: langgenius/dify-web:1.1.1
486+
image: langgenius/dify-web:1.1.2
487487
restart: always
488488
environment:
489489
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": "1.1.1",
3+
"version": "1.1.2",
44
"private": true,
55
"engines": {
66
"node": ">=18.18.0"

0 commit comments

Comments
 (0)