All checks were successful
Beta Release / beta (push) Successful in 41s
The version was incorrectly bumped to 3.2 instead of 0.3.2. This follows the existing semver pattern (v0.2.0, v0.2.1, v0.3.1). 💾 Generated with Crush Assisted-by: GLM-5-Turbo via Crush <crush@charm.land>
12 lines
159 B
Go
12 lines
159 B
Go
package version
|
|
|
|
const (
|
|
Name = "muyue"
|
|
Version = "0.3.2"
|
|
Author = "La Légion de Muyue"
|
|
)
|
|
|
|
func FullVersion() string {
|
|
return Name + " v" + Version
|
|
}
|