From 5b9fde34f30b60ced124bf1dd9394acda98c42f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?william=20chang=28=E5=BC=B5=E4=BB=B2=E5=A8=81=29?= Date: Tue, 28 May 2024 18:27:58 +0800 Subject: [PATCH] release 0.3.5-rc.1 (#329) --- docker/.env.example | 8 ++++---- wren-launcher/utils/docker.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/.env.example b/docker/.env.example index c4345968b..3543292e4 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -8,10 +8,10 @@ WREN_AI_SERVICE_PORT=5555 # version # CHANGE THIS TO THE LATEST VERSION -WREN_PRODUCT_VERSION=0.3.4 -WREN_ENGINE_VERSION=0.4.4 -WREN_AI_SERVICE_VERSION=0.3.7 -WREN_UI_VERSION=0.5.6 +WREN_PRODUCT_VERSION=0.3.5-rc.1 +WREN_ENGINE_VERSION=0.4.5 +WREN_AI_SERVICE_VERSION=0.3.8 +WREN_UI_VERSION=0.5.7 WREN_BOOTSTRAP_VERSION=0.1.4 # keys diff --git a/wren-launcher/utils/docker.go b/wren-launcher/utils/docker.go index 17c34929b..f4e16fc53 100644 --- a/wren-launcher/utils/docker.go +++ b/wren-launcher/utils/docker.go @@ -24,7 +24,7 @@ import ( const ( // please change the version when the version is updated - WREN_PRODUCT_VERSION string = "0.3.4" + WREN_PRODUCT_VERSION string = "0.3.5-rc.1" DOCKER_COMPOSE_YAML_URL string = "https://raw.githubusercontent.com/Canner/WrenAI/" + WREN_PRODUCT_VERSION + "/docker/docker-compose.yaml" DOCKER_COMPOSE_ENV_URL string = "https://raw.githubusercontent.com/Canner/WrenAI/" + WREN_PRODUCT_VERSION + "/docker/.env.example"