File tree Expand file tree Collapse file tree 5 files changed +9
-13
lines changed Expand file tree Collapse file tree 5 files changed +9
-13
lines changed Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change 2727
2828logger = 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
3733class AppDslService :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: '3'
22services :
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
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ x-shared-env: &shared-api-worker-env
273273services :
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:-}
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments