From ad6a5c0e847ce0e575e77dfc24b86d95aae562e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Tue, 1 Mar 2022 19:30:39 +0100 Subject: [PATCH 1/2] Release v5.20.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - docker/referece: add IsFullIdentifier - Changed oci layout transport to thread-safe destination - add pkg/blobcache from Buildah - blobcache: drop import on buildah/docker - blobcache: drop history comment - blobcache: make `ClearCache()` private - blobcache: remove `CacheLookupReferenceFunc` - blobcache: turn BlobCache into a struct - blobcache: export clearCache - Remove (unused and unreachable) keyring support - Eliminate a goroutine - Also introduces internal-only interfaces to allow extending the transport feature set in the future Signed-off-by: Miloslav Trmač --- version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version/version.go b/version/version.go index a9163e0592..30d772c30d 100644 --- a/version/version.go +++ b/version/version.go @@ -6,12 +6,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 5 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 19 + VersionMinor = 20 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 2 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support. From 43d64a5b3d57cb11878ae50fa166d73932479012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Tue, 1 Mar 2022 19:34:32 +0100 Subject: [PATCH 2/2] Bump to v5.20.1-dev MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miloslav Trmač --- version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version/version.go b/version/version.go index 30d772c30d..05bb40fb42 100644 --- a/version/version.go +++ b/version/version.go @@ -8,10 +8,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 20 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 0 + VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.