We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f2b1c commit 2cc6687Copy full SHA for 2cc6687
build/version.go
@@ -22,12 +22,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
22
// versioning 2.0.0 spec (http://semver.org/).
23
const (
24
appMajor uint = 0
25
- appMinor uint = 5
26
- appPatch uint = 2
+ appMinor uint = 6
+ appPatch uint = 0
27
28
// appPreRelease MUST only contain characters from semanticAlphabet
29
// per the semantic versioning spec.
30
- appPreRelease = "99-beta"
+ appPreRelease = "beta"
31
)
32
33
// Version returns the application version as a properly formed string per the
0 commit comments