From 4728b6eefe73589de4263a166b2d1b92f258f811 Mon Sep 17 00:00:00 2001 From: Sajay Antony Date: Thu, 15 Sep 2022 18:15:31 +0000 Subject: [PATCH 1/2] version: bump for 1.1.0-rc1 release Signed-off-by: Sajay Antony --- 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 31f99cf64..bf4d8cc7e 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 = 2 + 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 5d055a4805219e3ebf7ed740622e38b57d36d3a0 Mon Sep 17 00:00:00 2001 From: Sajay Antony Date: Thu, 15 Sep 2022 18:22:04 +0000 Subject: [PATCH 2/2] version: switch back to -dev Signed-off-by: Sajay Antony --- 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 bf4d8cc7e..1afd590fe 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.