diff --git a/releases/v1.7.0-beta.toml b/releases/v1.7.0-beta.toml index e937f4cb3..124edf7bd 100644 --- a/releases/v1.7.0-beta.toml +++ b/releases/v1.7.0-beta.toml @@ -113,6 +113,7 @@ The 2.0 release will remove any feature deprecated in 1.x. Features deprecated i * **Replace fork on mount logic with CLONE_FS** ([#7513](https://github.com/containerd/containerd/pull/7513)) * **Add support for default registry host configuration** ([#7607](https://github.com/containerd/containerd/pull/7607)) * **Use github.com/minio/sha256-simd for more efficient sha256 calculation** ([#7732](https://github.com/containerd/containerd/pull/7732)) +* **Make OCI options cross-platform** ([#7928](https://github.com/containerd/containerd/pull/7928)) See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index d8a24e0d0..1d36291bd 100644 --- a/version/version.go +++ b/version/version.go @@ -23,7 +23,7 @@ var ( Package = "github.com/containerd/containerd" // Version holds the complete version number. Filled in at linking time. - Version = "1.7.0-beta.2+unknown" + Version = "1.7.0-beta.3+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.