Skip to content

Commit

Permalink
v5.3.0
Browse files Browse the repository at this point in the history
* Fixed registries.conf
* Add Code of Conduct
* Bubbling up errors returned by copyBlobFromStream
* Re-order the members of archiveReference to a more logical order
* Add docker/archive.NewReference
* Remove tarballReference.transport
* Add tarball.NewReference
* Add storage.Transport.GetStoreIfSet
* Simplify ID value check
* Add validateImageID
* Add storage.Transport.NewStoreReference
* registries.conf.d: add stances for the registries.conf
* Add $HOME/.config/containers/registries.conf to config path
* sysregistriesv2: drop "rewrite" debug messages
* Add $HOME/.config/containers/certs.d to perHostCertDirPath
* Intial authfile man page
* Return error when acquire semaphore lock gets error
* feat(docker): support docker registry token
* containers-registries.conf.d: refine semantics
* Updated warning about short names.
* Make UpdatedImage update after conversion of MIME type
* Support IdentityToken in registry authn
* Deprecate SupportsEncryption call in manifest interface
* oci manifest: do not require whitelist of layer types
* Fix crash on missing RootFS in docker/tarfile configs
* copy: try list conversions on list push failures
* Support architecture variants for multi-arch images and runtime compatibility checks

Signed-off-by: Miloslav Trmač <mitr@redhat.com>
  • Loading branch information
mtrmac committed Mar 19, 2020
1 parent 023117c commit 4276a4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ const (
// VersionMajor is for an API incompatible changes
VersionMajor = 5
// VersionMinor is for functionality in a backwards-compatible manner
VersionMinor = 2
VersionMinor = 3
// VersionPatch is for backwards-compatible bug fixes
VersionPatch = 2
VersionPatch = 0

// VersionDev indicates development branch. Releases will be empty string.
VersionDev = "-dev"
VersionDev = ""
)

// Version is the specification version that the package types support.
Expand Down

0 comments on commit 4276a4f

Please sign in to comment.