From 4728b6eefe73589de4263a166b2d1b92f258f811 Mon Sep 17 00:00:00 2001 From: Sajay Antony Date: Thu, 15 Sep 2022 18:15:31 +0000 Subject: [PATCH] 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.