From 1dfa4f48f847869cf0cc753e22d23567353d3d87 Mon Sep 17 00:00:00 2001 From: Josh Dolitsky Date: Thu, 15 Sep 2022 13:38:25 -0500 Subject: [PATCH 1/2] version: bump for 1.1.0-rc1 release Signed-off-by: Josh Dolitsky --- specs-go/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specs-go/version.go b/specs-go/version.go index 8da267b3..c8e55c36 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -20,12 +20,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 1 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 0 + VersionMinor = 1 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 1 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "-rc1" ) // Version is the specification version that the package types support. From 95bed23c0c67237ec9492d713201472ce6797afd Mon Sep 17 00:00:00 2001 From: Josh Dolitsky Date: Thu, 15 Sep 2022 13:38:52 -0500 Subject: [PATCH 2/2] version: switch back to -dev Signed-off-by: Josh Dolitsky --- specs-go/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/version.go b/specs-go/version.go index c8e55c36..dc751cd2 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -25,7 +25,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-rc1" + VersionDev = "-dev" ) // Version is the specification version that the package types support.