Skip to content

Commit ad6a5c0

Browse files
committed
Release v5.20.0
- 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č <[email protected]>
1 parent d722da5 commit ad6a5c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

version/version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ const (
66
// VersionMajor is for an API incompatible changes
77
VersionMajor = 5
88
// VersionMinor is for functionality in a backwards-compatible manner
9-
VersionMinor = 19
9+
VersionMinor = 20
1010
// VersionPatch is for backwards-compatible bug fixes
11-
VersionPatch = 2
11+
VersionPatch = 0
1212

1313
// VersionDev indicates development branch. Releases will be empty string.
14-
VersionDev = "-dev"
14+
VersionDev = ""
1515
)
1616

1717
// Version is the specification version that the package types support.

0 commit comments

Comments
 (0)