From de81eaebe16b32d47b891c5b0d0c3f1f7ba0a368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Fri, 19 Nov 2021 12:38:47 +0100 Subject: [PATCH 1/2] v5.17.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Includes a fix for CVE-2021-41190 / GHSA-77vh-xpmg-72qh . * [CI:DOCS] Misc manpage fixups * Log credentials helper path if available * Record locations of blobs discovered by PutBlob but not TryReusingBlob * Fix possible out-of-bounds accesses in string indexing * Precompute digests option prior to registry upload * Add simple documentation how to use c/image with podman's rootless mode * Fix c/image fails to pull OCI image with non-`http(s)://` urls * Reject ambiguous manifest formats 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 5d737dbf51..ffb2a4ce25 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 = 16 + VersionMinor = 17 // 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 f06271d071caeaa7efef3c5653f8db41cd7e2e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Fri, 19 Nov 2021 12:41:13 +0100 Subject: [PATCH 2/2] Bump to v5.17.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 ffb2a4ce25..17639f0d4e 100644 --- a/version/version.go +++ b/version/version.go @@ -8,10 +8,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 17 // 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.