Skip to content

Commit de57af4

Browse files
authored
chore: update version to 0.10.2 in packaging and docker configurations (#9924)
1 parent badf9ba commit de57af4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.10.1",
12+
default="0.10.2",
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.10.1
5+
image: langgenius/dify-api:0.10.2
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.1
230+
image: langgenius/dify-api:0.10.2
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.1
399+
image: langgenius/dify-web:0.10.2
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ x-shared-env: &shared-api-worker-env
242242
services:
243243
# API service
244244
api:
245-
image: langgenius/dify-api:0.10.1
245+
image: langgenius/dify-api:0.10.2
246246
restart: always
247247
environment:
248248
# Use the shared environment variables.
@@ -262,7 +262,7 @@ services:
262262
# worker service
263263
# The Celery worker for processing the queue.
264264
worker:
265-
image: langgenius/dify-api:0.10.1
265+
image: langgenius/dify-api:0.10.2
266266
restart: always
267267
environment:
268268
# Use the shared environment variables.
@@ -281,7 +281,7 @@ services:
281281

282282
# Frontend web application.
283283
web:
284-
image: langgenius/dify-web:0.10.1
284+
image: langgenius/dify-web:0.10.2
285285
restart: always
286286
environment:
287287
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.10.1",
3+
"version": "0.10.2",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)