Skip to content

Commit de81eae

Browse files
committed
v5.17.0
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č <mitr@redhat.com>
1 parent d14f4ca commit de81eae

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 = 16
9+
VersionMinor = 17
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)