Skip to content

Commit 46036e6

Browse files
authored
fix: update version to 1.0.1 in configuration and Docker files (#15478)
Signed-off-by: -LAN- <[email protected]>
1 parent 1ffda0d commit 46036e6

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/tracker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "👾 Tracker"
22
description: For inner usages, please donot use this template.
33
title: "[Tracker] "
4-
labels:
4+
labels:
55
- tracker
66
body:
77
- type: textarea

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.0.0",
12+
default="1.0.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.0.0
5+
image: langgenius/dify-api:1.0.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.0.0
32+
image: langgenius/dify-api:1.0.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.0.0
56+
image: langgenius/dify-web:1.0.1
5757
restart: always
5858
environment:
5959
CONSOLE_API_URL: ${CONSOLE_API_URL:-}
@@ -131,7 +131,7 @@ services:
131131

132132
# plugin daemon
133133
plugin_daemon:
134-
image: langgenius/dify-plugin-daemon:0.0.3-local
134+
image: langgenius/dify-plugin-daemon:0.0.4-local
135135
restart: always
136136
environment:
137137
# 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.3-local
69+
image: langgenius/dify-plugin-daemon:0.0.4-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
@@ -420,7 +420,7 @@ x-shared-env: &shared-api-worker-env
420420
services:
421421
# API service
422422
api:
423-
image: langgenius/dify-api:1.0.0
423+
image: langgenius/dify-api:1.0.1
424424
restart: always
425425
environment:
426426
# Use the shared environment variables.
@@ -447,7 +447,7 @@ services:
447447
# worker service
448448
# The Celery worker for processing the queue.
449449
worker:
450-
image: langgenius/dify-api:1.0.0
450+
image: langgenius/dify-api:1.0.1
451451
restart: always
452452
environment:
453453
# Use the shared environment variables.
@@ -471,7 +471,7 @@ services:
471471

472472
# Frontend web application.
473473
web:
474-
image: langgenius/dify-web:1.0.0
474+
image: langgenius/dify-web:1.0.1
475475
restart: always
476476
environment:
477477
CONSOLE_API_URL: ${CONSOLE_API_URL:-}
@@ -549,7 +549,7 @@ services:
549549

550550
# plugin daemon
551551
plugin_daemon:
552-
image: langgenius/dify-plugin-daemon:0.0.3-local
552+
image: langgenius/dify-plugin-daemon:0.0.4-local
553553
restart: always
554554
environment:
555555
# 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.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)