We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01df186 commit 53fc1d1Copy full SHA for 53fc1d1
version/version.go
@@ -5,10 +5,10 @@ import (
5
)
6
7
const (
8
- VersionMajor = 1 // Major version component of the current release
9
- VersionMinor = 3 // Minor version component of the current release
10
- VersionPatch = 0 // Patch version component of the current release
11
- VersionMeta = "dev" // Version metadata to append to the version string
+ VersionMajor = 2 // Major version component of the current release
+ VersionMinor = 0 // Minor version component of the current release
+ VersionPatch = 0 // Patch version component of the current release
+ VersionMeta = "" // Version metadata to append to the version string
12
13
14
// Version holds the textual version string.
0 commit comments