From a139cc423184af6078077b9b7ee336eddbd03f8f Mon Sep 17 00:00:00 2001 From: Brandon Mitchell Date: Thu, 23 Jan 2025 11:05:58 -0500 Subject: [PATCH] version: release v1.1.1 Signed-off-by: Brandon Mitchell --- specs-go/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs-go/version.go b/specs-go/version.go index 64b527cf..0426a505 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -22,10 +22,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 1 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 0 + VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "+dev" + VersionDev = "" ) // Version is the specification version that the package types support.