From 3ed4f40160d306006741bac0005985d6b1f88c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Wed, 25 Aug 2021 21:31:59 +0200 Subject: [PATCH] v5.16.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Don't cancel a mpb.Progress using a context * Don't recompress non-gzip data without an explicit request * accept identity tokens from credential helpers * Add codespell fixes * Don't initialize a digest.Canonical.Digester if it is not necessary * Don't compute the (compressed) digest in PutBlob if the caller provides it * Don't call digest.Digester.Hash() on every digeringReader.Read() * Pass OriginalDigest and UncompressedDigest to c/storage.Store.PutLayer * Document that PutBlob callers must only provide validated digests * Consistently compare docker.Digest with "" without Digest.String() * Don't unnecessarily compute the blob digest in PutBlob * copy.Options: semaphore to limit parallel pulls globaly Signed-off-by: Miloslav Trmač --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 202a89023..b9f8c3e9f 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support.