From 34438211d93a79f096d447cb6987b402baf2adc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Thu, 29 Sep 2022 18:58:18 +0200 Subject: [PATCH] Release v5.23.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Image.Inspect now provides more information. Improved support for registries that require authentication, notably for the search operation. - Cirrus: Use the latest imgts container - Cirrus: Update CI VM images - Replace use of deprecated io/ioutil - Reformat with Go 1.19's gofmt - Use c/image's reference package - Rename archiveImageDestination.writer to file - Introduce archiveImageDestination.closeWriter - Use an *archive.Writer in dockerArchiveReference and dockerArchiveDestination - Inline openArchiveForWriting into archive.Writer - Automaticaly delete a docker-archive if we didn't write a complete image - Update a test dependency to avoid override problems - docker_client: Handle "invalid_scope" errors - Document limitations of transports for remote podman client - Remove github.com/docker/distribution/registry/client package - Log invalid and empty credential helper entries 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 ca5f4a42dd..9996737273 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 = 22 + VersionMinor = 23 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 1 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support.