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 e8097a1 + 31a762b commit b7d0706Copy full SHA for b7d0706
version.go
@@ -17,12 +17,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
17
// versioning 2.0.0 spec (http://semver.org/).
18
const (
19
appMajor uint = 0
20
- appMinor uint = 24
21
- appPatch uint = 2
+ appMinor uint = 25
+ appPatch uint = 0
22
23
// appPreRelease MUST only contain characters from semanticAlphabet
24
// per the semantic versioning spec.
25
- appPreRelease = "beta"
+ appPreRelease = "beta.rc1"
26
)
27
28
// appBuild is defined as a variable so it can be overridden during the build
0 commit comments