Skip to content

Commit 7f583ec

Browse files
authored
chore: update version to 0.11.0 across all relevant files (#10278)
1 parent 7962101 commit 7f583ec

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
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.10.2",
12+
default="0.11.0",
1313
)
1414

1515
COMMIT_SHA: str = Field(

api/services/app_dsl_service/service.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@
2727

2828
logger = logging.getLogger(__name__)
2929

30-
current_dsl_version = "0.1.2"
31-
dsl_to_dify_version_mapping: dict[str, str] = {
32-
"0.1.2": "0.8.0",
33-
"0.1.1": "0.6.0", # dsl version -> from dify version
34-
}
30+
current_dsl_version = "0.1.3"
3531

3632

3733
class AppDslService:

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.10.2
5+
image: langgenius/dify-api:0.11.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.10.2
230+
image: langgenius/dify-api:0.11.0
231231
restart: always
232232
environment:
233233
CONSOLE_WEB_URL: ''
@@ -396,7 +396,7 @@ services:
396396

397397
# Frontend web application.
398398
web:
399-
image: langgenius/dify-web:0.10.2
399+
image: langgenius/dify-web:0.11.0
400400
restart: always
401401
environment:
402402
# 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
@@ -273,7 +273,7 @@ x-shared-env: &shared-api-worker-env
273273
services:
274274
# API service
275275
api:
276-
image: langgenius/dify-api:0.10.2
276+
image: langgenius/dify-api:0.11.0
277277
restart: always
278278
environment:
279279
# Use the shared environment variables.
@@ -293,7 +293,7 @@ services:
293293
# worker service
294294
# The Celery worker for processing the queue.
295295
worker:
296-
image: langgenius/dify-api:0.10.2
296+
image: langgenius/dify-api:0.11.0
297297
restart: always
298298
environment:
299299
# Use the shared environment variables.
@@ -312,7 +312,7 @@ services:
312312

313313
# Frontend web application.
314314
web:
315-
image: langgenius/dify-web:0.10.2
315+
image: langgenius/dify-web:0.11.0
316316
restart: always
317317
environment:
318318
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.10.2",
3+
"version": "0.11.0",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)