From 3e013c2729f542c16c7483ffc2fe06ba96b53e5b Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Tue, 24 Jan 2023 19:16:06 +0900 Subject: [PATCH] version: release v1.1.0-rc.1 Signed-off-by: Akihiro Suda --- 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 596af0c2f..8ae4227b9 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -6,12 +6,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 = "-rc.1" ) // Version is the specification version that the package types support.