Skip to content

Commit 7f3282e

Browse files
authored
Update version to 0.8.3 in packaging and docker-compose files (#8590)
1 parent b773ebd commit 7f3282e

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.8.2",
12+
default="0.8.3",
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.8.2
5+
image: langgenius/dify-api:0.8.3
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.8.2
230+
image: langgenius/dify-api:0.8.3
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.8.2
399+
image: langgenius/dify-web:0.8.3
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
@@ -208,7 +208,7 @@ x-shared-env: &shared-api-worker-env
208208
services:
209209
# API service
210210
api:
211-
image: langgenius/dify-api:0.8.2
211+
image: langgenius/dify-api:0.8.3
212212
restart: always
213213
environment:
214214
# Use the shared environment variables.
@@ -228,7 +228,7 @@ services:
228228
# worker service
229229
# The Celery worker for processing the queue.
230230
worker:
231-
image: langgenius/dify-api:0.8.2
231+
image: langgenius/dify-api:0.8.3
232232
restart: always
233233
environment:
234234
# Use the shared environment variables.
@@ -247,7 +247,7 @@ services:
247247

248248
# Frontend web application.
249249
web:
250-
image: langgenius/dify-web:0.8.2
250+
image: langgenius/dify-web:0.8.3
251251
restart: always
252252
environment:
253253
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.8.2",
3+
"version": "0.8.3",
44
"private": true,
55
"engines": {
66
"node": ">=18.17.0"

0 commit comments

Comments
 (0)