From 1cb6aacc6d0b912c2cc1c91f03bf2531e60d126d Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Fri, 30 Jul 2021 11:27:43 +0200 Subject: [PATCH] v5.15.0 * copy: move error message to debug * copy: drop FetchPartialBlobs option * Use http.Method* constants instead of hard-coded strings * Use http.NewRequestWithContext() instead of http.NewRequest().WithContext() * Note that this module requires Go 1.13 * Don't unnecessarily strip schema:// and /path from registry on search * Don't build a map just to access one element * Prevent simultaneous compression and decompression * refactoring per PR comments * Add support for decompressing while copying to dir:// * build(deps): bump github.com/containers/storage from 1.32.6 to 1.33.0 * Return an actual error instead of nil when registry returns bad status code * Reduce the dependency of pkg/compression on c/storage/pkg/chunked * Update c/storage to v1.33.0 * Use pkg/compression/types where possible * Add pkg/compression/types.*AlgorithmName constants * Don't change InternalUnstableUndocumentedMIMEQuestionMark of Xz * Fold the algorithm initializers * Refer to compression.Gzip instead of looking it up by name * Fix unpredictable outcome of compression.DetectCompression* * Use quay.io in docker unit tests instead of docker.io * Cirrus: Sync. skopeo test to skopeo repo. * Remove `GetCredentials` deprecation Signed-off-by: Valentin Rothberg --- version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version/version.go b/version/version.go index a4bdb058ea..8936ec0879 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 = 14 + VersionMinor = 15 // 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.