From 0f98d91a0afe7ed3ab0f29349beed2bb4ba1507d Mon Sep 17 00:00:00 2001 From: Brandon Mitchell Date: Thu, 1 Feb 2024 12:49:43 -0500 Subject: [PATCH 1/2] version: release v1.1.0 Signed-off-by: Brandon Mitchell --- 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 c8c624c3..3d62be75 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 = "-rc.4+dev" + VersionDev = "" ) // Version is the specification version that the package types support. From 6152da4208688669fed650ebdece814140fa2b56 Mon Sep 17 00:00:00 2001 From: Brandon Mitchell Date: Thu, 1 Feb 2024 12:51:11 -0500 Subject: [PATCH 2/2] version: bump back to +dev Signed-off-by: Brandon Mitchell --- 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 3d62be75..64b527cf 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 = "" + VersionDev = "+dev" ) // Version is the specification version that the package types support.