Skip to content

Commit 85160b0

Browse files
authored
chore: update version to 1.1.1 in packaging and docker configurations (#16301)
Signed-off-by: -LAN- <[email protected]>
1 parent 8996c1d commit 85160b0

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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="1.1.0",
12+
default="1.1.1",
1313
)
1414

1515
COMMIT_SHA: str = Field(

docker/docker-compose-template.yaml

Lines changed: 4 additions & 4 deletions
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.0
5+
image: langgenius/dify-api:1.1.1
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.0
32+
image: langgenius/dify-api:1.1.1
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.0
56+
image: langgenius/dify-web:1.1.1
5757
restart: always
5858
environment:
5959
CONSOLE_API_URL: ${CONSOLE_API_URL:-}
@@ -133,7 +133,7 @@ services:
133133

134134
# plugin daemon
135135
plugin_daemon:
136-
image: langgenius/dify-plugin-daemon:0.0.5-local
136+
image: langgenius/dify-plugin-daemon:0.0.6-local
137137
restart: always
138138
environment:
139139
# Use the shared environment variables.

docker/docker-compose.middleware.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ services:
6666

6767
# plugin daemon
6868
plugin_daemon:
69-
image: langgenius/dify-plugin-daemon:0.0.5-local
69+
image: langgenius/dify-plugin-daemon:0.0.6-local
7070
restart: always
7171
environment:
7272
# Use the shared environment variables.

docker/docker-compose.yaml

Lines changed: 4 additions & 4 deletions
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.0
435+
image: langgenius/dify-api:1.1.1
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.0
462+
image: langgenius/dify-api:1.1.1
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.0
486+
image: langgenius/dify-web:1.1.1
487487
restart: always
488488
environment:
489489
CONSOLE_API_URL: ${CONSOLE_API_URL:-}
@@ -563,7 +563,7 @@ services:
563563

564564
# plugin daemon
565565
plugin_daemon:
566-
image: langgenius/dify-plugin-daemon:0.0.5-local
566+
image: langgenius/dify-plugin-daemon:0.0.6-local
567567
restart: always
568568
environment:
569569
# Use the shared environment variables.

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

0 commit comments

Comments
 (0)