Skip to content

Commit 7a962b9

Browse files
authored
chore: bump version to 0.13.0 (langgenius#11284)
Signed-off-by: -LAN- <[email protected]>
1 parent a679079 commit 7a962b9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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="0.12.1",
12+
default="0.13.0",
1313
)
1414

1515
COMMIT_SHA: str = Field(

api/services/app_dsl_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
IMPORT_INFO_REDIS_KEY_PREFIX = "app_import_info:"
2424
IMPORT_INFO_REDIS_EXPIRY = 180 # 3 minutes
25-
CURRENT_DSL_VERSION = "0.1.3"
25+
CURRENT_DSL_VERSION = "0.1.4"
2626

2727

2828
class ImportMode(StrEnum):

docker-legacy/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
# API service
44
api:
5-
image: langgenius/dify-api:0.12.1
5+
image: langgenius/dify-api:0.13.0
66
restart: always
77
environment:
88
# Startup mode, 'api' starts the API server.
@@ -227,7 +227,7 @@ services:
227227
# worker service
228228
# The Celery worker for processing the queue.
229229
worker:
230-
image: langgenius/dify-api:0.12.1
230+
image: langgenius/dify-api:0.13.0
231231
restart: always
232232
environment:
233233
CONSOLE_WEB_URL: ''
@@ -397,7 +397,7 @@ services:
397397

398398
# Frontend web application.
399399
web:
400-
image: langgenius/dify-web:0.12.1
400+
image: langgenius/dify-web:0.13.0
401401
restart: always
402402
environment:
403403
# The base URL of console application api server, refers to the Console base URL of WEB service if console domain is

docker/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ x-shared-env: &shared-api-worker-env
292292
services:
293293
# API service
294294
api:
295-
image: langgenius/dify-api:0.12.1
295+
image: langgenius/dify-api:0.13.0
296296
restart: always
297297
environment:
298298
# Use the shared environment variables.
@@ -312,7 +312,7 @@ services:
312312
# worker service
313313
# The Celery worker for processing the queue.
314314
worker:
315-
image: langgenius/dify-api:0.12.1
315+
image: langgenius/dify-api:0.13.0
316316
restart: always
317317
environment:
318318
# Use the shared environment variables.
@@ -331,7 +331,7 @@ services:
331331

332332
# Frontend web application.
333333
web:
334-
image: langgenius/dify-web:0.12.1
334+
image: langgenius/dify-web:0.13.0
335335
restart: always
336336
environment:
337337
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

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

0 commit comments

Comments
 (0)