We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37a245a + cb533d5 commit 55908dbCopy full SHA for 55908db
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 = 3
26
- appPatch uint = 1
+ appMinor uint = 4
+ appPatch uint = 0
27
28
// appPreRelease MUST only contain characters from semanticAlphabet per
29
// the semantic versioning spec.
30
- appPreRelease = "alpha"
+ appPreRelease = "rc1.beta"
31
)
32
33
// Version returns the application version as a properly formed string per the
0 commit comments