From 3c28140c32105abd25bdd7cc4b48ed8a10976d24 Mon Sep 17 00:00:00 2001 From: lishuang Date: Sun, 6 Aug 2023 16:19:32 +0800 Subject: [PATCH] feat: release 4.0.0.beta2 --- 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 6407e86..be41e93 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [English Version](https://tank-doc.eyeblue.cn/en) -# 蓝眼云盘(4.0.0.beta1) +# 蓝眼云盘(4.0.0.beta2) [在线Demo](https://tanker.eyeblue.cn) (体验账号: demo 密码:123456) 蓝眼云盘是蓝眼开源系列代表作品之一,致力于打造精致,优雅,简约的云盘。核心功能如下: diff --git a/build/pack/build.bat b/build/pack/build.bat index 5543170..3c906e5 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.beta1 +SET VERSION_NAME=tank-4.0.0.beta2 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 9958f6d..4f7b8b1 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.beta1 +VERSION_NAME=tank-4.0.0.beta2 echo "VERSION_NAME: ${VERSION_NAME}" # golang proxy GOPROXY=https://goproxy.cn diff --git a/code/core/config.go b/code/core/config.go index 614dbae..0f9cd51 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.beta1" + VERSION = "4.0.0.beta2" ) type Config interface {