Skip to content

Commit e9aedc7

Browse files
authored
chore: Updates version numbers for upcoming release (#18550)
Signed-off-by: -LAN- <[email protected]>
1 parent cf464d2 commit e9aedc7

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
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.2.0",
12+
default="1.3.0",
1313
)
1414

1515
COMMIT_SHA: str = Field(

api/services/app_dsl_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
CHECK_DEPENDENCIES_REDIS_KEY_PREFIX = "app_check_dependencies:"
4141
IMPORT_INFO_REDIS_EXPIRY = 10 * 60 # 10 minutes
4242
DSL_MAX_SIZE = 10 * 1024 * 1024 # 10MB
43-
CURRENT_DSL_VERSION = "0.1.5"
43+
CURRENT_DSL_VERSION = "0.2.0"
4444

4545

4646
class ImportMode(StrEnum):

docker/docker-compose-template.yaml

+4-4
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.2.0
5+
image: langgenius/dify-api:1.3.0
66
restart: always
77
environment:
88
# Use the shared environment variables.
@@ -31,7 +31,7 @@ services:
3131
# worker service
3232
# The Celery worker for processing the queue.
3333
worker:
34-
image: langgenius/dify-api:1.2.0
34+
image: langgenius/dify-api:1.3.0
3535
restart: always
3636
environment:
3737
# Use the shared environment variables.
@@ -57,7 +57,7 @@ services:
5757

5858
# Frontend web application.
5959
web:
60-
image: langgenius/dify-web:1.2.0
60+
image: langgenius/dify-web:1.3.0
6161
restart: always
6262
environment:
6363
CONSOLE_API_URL: ${CONSOLE_API_URL:-}
@@ -142,7 +142,7 @@ services:
142142

143143
# plugin daemon
144144
plugin_daemon:
145-
image: langgenius/dify-plugin-daemon:0.0.7-local
145+
image: langgenius/dify-plugin-daemon:0.0.8-local
146146
restart: always
147147
environment:
148148
# Use the shared environment variables.

docker/docker-compose.middleware.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ services:
7171

7272
# plugin daemon
7373
plugin_daemon:
74-
image: langgenius/dify-plugin-daemon:0.0.7-local
74+
image: langgenius/dify-plugin-daemon:0.0.8-local
7575
restart: always
7676
env_file:
7777
- ./middleware.env

docker/docker-compose.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ x-shared-env: &shared-api-worker-env
479479
services:
480480
# API service
481481
api:
482-
image: langgenius/dify-api:1.2.0
482+
image: langgenius/dify-api:1.3.0
483483
restart: always
484484
environment:
485485
# Use the shared environment variables.
@@ -508,7 +508,7 @@ services:
508508
# worker service
509509
# The Celery worker for processing the queue.
510510
worker:
511-
image: langgenius/dify-api:1.2.0
511+
image: langgenius/dify-api:1.3.0
512512
restart: always
513513
environment:
514514
# Use the shared environment variables.
@@ -534,7 +534,7 @@ services:
534534

535535
# Frontend web application.
536536
web:
537-
image: langgenius/dify-web:1.2.0
537+
image: langgenius/dify-web:1.3.0
538538
restart: always
539539
environment:
540540
CONSOLE_API_URL: ${CONSOLE_API_URL:-}
@@ -619,7 +619,7 @@ services:
619619

620620
# plugin daemon
621621
plugin_daemon:
622-
image: langgenius/dify-plugin-daemon:0.0.7-local
622+
image: langgenius/dify-plugin-daemon:0.0.8-local
623623
restart: always
624624
environment:
625625
# Use the shared environment variables.

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.2.0",
3+
"version": "1.3.0",
44
"private": true,
55
"engines": {
66
"node": ">=v22.11.0"

0 commit comments

Comments
 (0)