Skip to content

Commit 926546b

Browse files
authored
chore: bump version to 0.14.1 (#11784)
Signed-off-by: -LAN- <[email protected]>
1 parent 56434db commit 926546b

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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="0.14.0",
12+
default="0.14.1",
1313
)
1414

1515
COMMIT_SHA: str = Field(

docker-legacy/docker-compose.yaml

+3-3
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.14.0
5+
image: langgenius/dify-api:0.14.1
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.14.0
230+
image: langgenius/dify-api:0.14.1
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.14.0
400+
image: langgenius/dify-web:0.14.1
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-template.yaml

+3-3
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:0.14.0
5+
image: langgenius/dify-api:0.14.1
66
restart: always
77
environment:
88
# Use the shared environment variables.
@@ -25,7 +25,7 @@ services:
2525
# worker service
2626
# The Celery worker for processing the queue.
2727
worker:
28-
image: langgenius/dify-api:0.14.0
28+
image: langgenius/dify-api:0.14.1
2929
restart: always
3030
environment:
3131
# Use the shared environment variables.
@@ -47,7 +47,7 @@ services:
4747

4848
# Frontend web application.
4949
web:
50-
image: langgenius/dify-web:0.14.0
50+
image: langgenius/dify-web:0.14.1
5151
restart: always
5252
environment:
5353
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

docker/docker-compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ x-shared-env: &shared-api-worker-env
389389
services:
390390
# API service
391391
api:
392-
image: langgenius/dify-api:0.14.0
392+
image: langgenius/dify-api:0.14.1
393393
restart: always
394394
environment:
395395
# Use the shared environment variables.
@@ -412,7 +412,7 @@ services:
412412
# worker service
413413
# The Celery worker for processing the queue.
414414
worker:
415-
image: langgenius/dify-api:0.14.0
415+
image: langgenius/dify-api:0.14.1
416416
restart: always
417417
environment:
418418
# Use the shared environment variables.
@@ -434,7 +434,7 @@ services:
434434

435435
# Frontend web application.
436436
web:
437-
image: langgenius/dify-web:0.14.0
437+
image: langgenius/dify-web:0.14.1
438438
restart: always
439439
environment:
440440
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dify-web",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)