From 49f44a00b2d2b4436688f72ed67ccbd34133d2a7 Mon Sep 17 00:00:00 2001 From: lishuang Date: Sat, 8 Jul 2023 19:18:30 +0800 Subject: [PATCH] feat: use version 4.0.0.beta1 --- 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 5ec178f..177dae8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [English Version](https://tank-doc.eyeblue.cn/en) -# 蓝眼云盘(4.0.0.beta) +# 蓝眼云盘(4.0.0.beta1) [在线Demo](https://tanker.eyeblue.cn) (体验账号: demo 密码:123456) 蓝眼云盘是蓝眼开源系列代表作品之一,致力于打造精致,优雅,简约的云盘。核心功能如下: diff --git a/build/pack/build.bat b/build/pack/build.bat index d5b8abd..5543170 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.beta +SET VERSION_NAME=tank-4.0.0.beta1 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 4147d7b..9958f6d 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.beta +VERSION_NAME=tank-4.0.0.beta1 echo "VERSION_NAME: ${VERSION_NAME}" # golang proxy GOPROXY=https://goproxy.cn diff --git a/code/core/config.go b/code/core/config.go index 1939002..614dbae 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.beta" + VERSION = "4.0.0.beta1" ) type Config interface {