Sfoglia il codice sorgente

feat: bump to 0.3.1 (#253)

tags/0.3.1
John Wang 2 anni fa
parent
commit
a1c6cecf10
Nessun account collegato all'indirizzo email del committer
3 ha cambiato i file con 6 aggiunte e 6 eliminazioni
  1. 1
    1
      api/config.py
  2. 3
    3
      docker/docker-compose.yaml
  3. 2
    2
      web/package.json

+ 1
- 1
api/config.py Vedi File

@@ -78,7 +78,7 @@ class Config:
self.CONSOLE_URL = get_env('CONSOLE_URL')
self.API_URL = get_env('API_URL')
self.APP_URL = get_env('APP_URL')
self.CURRENT_VERSION = "0.3.0"
self.CURRENT_VERSION = "0.3.1"
self.COMMIT_SHA = get_env('COMMIT_SHA')
self.EDITION = "SELF_HOSTED"
self.DEPLOY_ENV = get_env('DEPLOY_ENV')

+ 3
- 3
docker/docker-compose.yaml Vedi File

@@ -2,7 +2,7 @@ version: '3.1'
services:
# API service
api:
image: langgenius/dify-api:0.3.0
image: langgenius/dify-api:0.3.1
restart: always
environment:
# Startup mode, 'api' starts the API server.
@@ -110,7 +110,7 @@ services:
# worker service
# The Celery worker for processing the queue.
worker:
image: langgenius/dify-api:0.3.0
image: langgenius/dify-api:0.3.1
restart: always
environment:
# Startup mode, 'worker' starts the Celery worker for processing the queue.
@@ -156,7 +156,7 @@ services:

# Frontend web application.
web:
image: langgenius/dify-web:0.3.0
image: langgenius/dify-web:0.3.1
restart: always
environment:
EDITION: SELF_HOSTED

+ 2
- 2
web/package.json Vedi File

@@ -1,6 +1,6 @@
{
"name": "dify-web",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "next dev",
@@ -94,4 +94,4 @@
"eslint --fix"
]
}
}
}

Loading…
Annulla
Salva