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 df4499a commit 7f64331Copy full SHA for 7f64331
version/version.go
@@ -18,14 +18,14 @@ import "fmt"
18
19
const (
20
// VersionMajor is for an API incompatible changes
21
- VersionMajor = 0
+ VersionMajor = 1
22
// VersionMinor is for functionality in a backwards-compatible manner
23
- VersionMinor = 3
+ VersionMinor = 0
24
// VersionPatch is for backwards-compatible bug fixes
25
VersionPatch = 0
26
27
// VersionDev indicates development branch. Releases will be empty string.
28
- VersionDev = "-dev"
+ VersionDev = "-rc1"
29
)
30
31
// Version is the specification version that the package types support.
0 commit comments