Fix master semver value (#21873)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
congqixia 2023-01-31 17:41:50 +08:00 committed by GitHub
parent 45ff568470
commit 01e59f8ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,9 @@ package common
import "github.com/blang/semver/v4"
// Version current versiong for session
// Version current version for session
var Version semver.Version
func init() {
Version, _ = semver.Parse("2.2.0-pre+dev")
Version, _ = semver.Parse("2.3.0-pre+dev")
}