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.
1 parent 83e1bbd commit 6f6ce0eCopy full SHA for 6f6ce0e
version.go
@@ -33,12 +33,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
33
// versioning 2.0.0 spec (http://semver.org/).
34
const (
35
appMajor uint = 0
36
- appMinor uint = 14
37
- appPatch uint = 1
+ appMinor uint = 15
+ appPatch uint = 0
38
39
// appPreRelease MUST only contain characters from semanticAlphabet per
40
// the semantic versioning spec.
41
- appPreRelease = "alpha"
+ appPreRelease = "alpha.rc1"
42
)
43
44
// Version returns the application version as a properly formed string per the
0 commit comments