update version
All checks were successful
Test the stack. / Run unit tests (pull_request) Successful in 5m30s
Test the stack. / Run integration tests (pull_request) Successful in 54m25s

This commit is contained in:
Roy Crihfield 2024-04-18 18:12:39 +08:00
parent 319a331d03
commit 8769670122

View File

@ -19,10 +19,10 @@ package version
import "fmt"
const (
Major = 5 // Major version component of the current release
Minor = 0 // Minor version component of the current release
Patch = 0 // Patch version component of the current release
Meta = "alpha" // Version metadata to append to the version string
Major = 5 // Major version component of the current release
Minor = 2 // Minor version component of the current release
Patch = 0 // Patch version component of the current release
Meta = "" // Version metadata to append to the version string
)
// Version holds the textual version string.