diff --git a/deployment/kustomizations/base/cm.yaml b/deployment/kustomizations/base/cm.yaml index 1f12f0cb9..299041d4f 100644 --- a/deployment/kustomizations/base/cm.yaml +++ b/deployment/kustomizations/base/cm.yaml @@ -11,7 +11,7 @@ data: WREN_UI_ENDPOINT: http://wren-ui-svc:3000 #Release version used by wren ui https://github.com/Canner/WrenAI/blob/main/docker/docker-compose.yaml#L85-L88 - WREN_PRODUCT_VERSION: "0.11.0-rc.3" + WREN_PRODUCT_VERSION: "0.11.0" WREN_ENGINE_VERSION: "0.12.1" WREN_AI_SERVICE_VERSION: "0.11.8" WREN_UI_VERSION: "0.17.3" diff --git a/deployment/kustomizations/patches/cm.yaml b/deployment/kustomizations/patches/cm.yaml index e81eb0a8e..43c75fae7 100644 --- a/deployment/kustomizations/patches/cm.yaml +++ b/deployment/kustomizations/patches/cm.yaml @@ -7,7 +7,7 @@ WREN_AI_SERVICE_PORT: "5555" #Release version used by wren ui https://github.com/Canner/WrenAI/blob/main/docker/docker-compose.yaml#L85-L88 - WREN_PRODUCT_VERSION: "0.11.0-rc.3" + WREN_PRODUCT_VERSION: "0.11.0" #fix: WREN_ENGINE_VERSION: "0.12.1" WREN_AI_SERVICE_VERSION: "0.11.8" diff --git a/docker/.env.example b/docker/.env.example index 15e9e1fc5..f572cbd1b 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -26,7 +26,7 @@ QDRANT_API_KEY= # version # CHANGE THIS TO THE LATEST VERSION -WREN_PRODUCT_VERSION=0.11.0-rc.3 +WREN_PRODUCT_VERSION=0.11.0 WREN_ENGINE_VERSION=0.12.1 WREN_AI_SERVICE_VERSION=0.11.8 IBIS_SERVER_VERSION=0.12.1 diff --git a/wren-launcher/utils/docker.go b/wren-launcher/utils/docker.go index e9d05143f..adb2b5f50 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.11.0-rc.3" + WREN_PRODUCT_VERSION string = "0.11.0" 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" AI_SERVICE_CONFIG_URL string = "https://raw.githubusercontent.com/Canner/WrenAI/" + WREN_PRODUCT_VERSION + "/docker/config.example.yaml"