From 8f8295cb68103f49f4e4cebd9c969016ba60995b Mon Sep 17 00:00:00 2001 From: lishuang Date: Sun, 13 Aug 2023 12:31:23 +0800 Subject: [PATCH] build: version 4.0.0 --- README.md | 2 +- build/pack/build.bat | 2 +- build/pack/build.sh | 2 +- code/core/config.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index be41e93..543862a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [English Version](https://tank-doc.eyeblue.cn/en) -# 蓝眼云盘(4.0.0.beta2) +# 蓝眼云盘(4.0.0) [在线Demo](https://tanker.eyeblue.cn) (体验账号: demo 密码:123456) 蓝眼云盘是蓝眼开源系列代表作品之一,致力于打造精致,优雅,简约的云盘。核心功能如下: diff --git a/build/pack/build.bat b/build/pack/build.bat index 3c906e5..72b5bea 100644 --- a/build/pack/build.bat +++ b/build/pack/build.bat @@ -11,7 +11,7 @@ @REM prepare the variables. @REM version name -SET VERSION_NAME=tank-4.0.0.beta2 +SET VERSION_NAME=tank-4.0.0 ECHO VERSION_NAME: %VERSION_NAME% @REM golang proxy SET GOPROXY=https://goproxy.cn diff --git a/build/pack/build.sh b/build/pack/build.sh index 4f7b8b1..36af359 100755 --- a/build/pack/build.sh +++ b/build/pack/build.sh @@ -10,7 +10,7 @@ set -e #prepare the variables. # version name -VERSION_NAME=tank-4.0.0.beta2 +VERSION_NAME=tank-4.0.0 echo "VERSION_NAME: ${VERSION_NAME}" # golang proxy GOPROXY=https://goproxy.cn diff --git a/code/core/config.go b/code/core/config.go index 0f9cd51..244a52e 100644 --- a/code/core/config.go +++ b/code/core/config.go @@ -14,7 +14,7 @@ const ( //db table's prefix. tank40_ means current version is tank:4.0.x TABLE_PREFIX = "tank40_" - VERSION = "4.0.0.beta2" + VERSION = "4.0.0" ) type Config interface {