From a85610d523cbcd75310ca8533a2d87d99874c893 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 10 Sep 2025 19:51:54 -0700 Subject: [PATCH] Prepare release notes for v2.2.0-beta.0 Signed-off-by: Derek McGowan --- releases/v2.2.0-beta.toml | 30 ++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 releases/v2.2.0-beta.toml diff --git a/releases/v2.2.0-beta.toml b/releases/v2.2.0-beta.toml new file mode 100644 index 0000000000..07a173d77b --- /dev/null +++ b/releases/v2.2.0-beta.toml @@ -0,0 +1,30 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "containerd" +github_repo = "containerd/containerd" +match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$" +ignore_deps = [ "github.com/containerd/containerd" ] + +# previous release +previous = "v2.1.0" + +pre_release = true + +preface = """\ +The second minor release of containerd 2.x focuses on continued stability alongside +new features and improvements. This is the second time-based released for containerd. + +This is a beta release and some functionality is still under development. +""" + +postface = """\ +### Which file should I download? +* `containerd---.tar.gz`: âś…Recommended. Dynamically linked with glibc 2.35 (Ubuntu 22.04). +* `containerd-static---.tar.gz`: Statically linked. Expected to be used on Linux distributions that do not use glibc >= 2.35. Not position-independent. + +In addition to containerd, typically you will have to install [runc](https://github.com/opencontainers/runc/releases) +and [CNI plugins](https://github.com/containernetworking/plugins/releases) from their official sites too. + +See also the [Getting Started](https://github.com/containerd/containerd/blob/main/docs/getting-started.md) documentation. +""" diff --git a/version/version.go b/version/version.go index b2a0254f9a..a4936bf6dc 100644 --- a/version/version.go +++ b/version/version.go @@ -24,7 +24,7 @@ var ( Package = "github.com/containerd/containerd/v2" // Version holds the complete version number. Filled in at linking time. - Version = "2.1.0+unknown" + Version = "2.2.0-beta+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.