From a8082cd60df5843b19710e832c653d4cfa6cfd88 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 16 Apr 2025 21:54:20 -0700 Subject: [PATCH] Prepare release notes for v2.0.5 Signed-off-by: Derek McGowan --- releases/v2.0.5.toml | 27 +++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 releases/v2.0.5.toml diff --git a/releases/v2.0.5.toml b/releases/v2.0.5.toml new file mode 100644 index 000000000..39287fe86 --- /dev/null +++ b/releases/v2.0.5.toml @@ -0,0 +1,27 @@ +# 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.0.4" + +pre_release = false + +preface = """\ +The fifth patch release for containerd 2.0 includes various bug fixes and updates. +""" + +postface = """\ +### Which file should I download? +* `containerd---.tar.gz`: âś…Recommended. Dynamically linked with glibc 2.31 (Ubuntu 20.04). +* `containerd-static---.tar.gz`: Statically linked. Expected to be used on non-glibc Linux distributions. 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 23d820a9e..bd5a0b512 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.0.4+unknown" + Version = "2.0.5+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.