From 6ca4b52605263cb6e873a4101332eb00e65924be Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 1 Nov 2023 11:27:11 -0700 Subject: [PATCH 1/2] Update mailmap Signed-off-by: Derek McGowan --- .mailmap | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.mailmap b/.mailmap index 87221c9af..aac1a4422 100644 --- a/.mailmap +++ b/.mailmap @@ -3,9 +3,11 @@ Abhinandan Prativadi Ace-Tang Adam Korcz Aditi Sharma +Akhil Mohan Akihiro Suda Akihiro Suda Allen Sun +Alex Ellis Alexander Morozov Antonio Ojea Antonio Ojea @@ -26,8 +28,10 @@ Cory Bennett Cristian Staretu Cristian Staretu Daniel Dao +Danny Canter Derek McGowan Edgar Lee +Enrico Weigelt Eric Ernst Eric Lin Eric Ren @@ -69,17 +73,21 @@ Lorenz Brun Luc Perkins James Sturtevant Jiajun Jiang +Jin Dong Julien Balestra Jun Lin Chen <1913688+mc256@users.noreply.github.com> Justin Cormack Justin Terry Justin Terry Kante +Kazuyoshi Kato +Kazuyoshi Kato Kazuyoshi Kato Kenfe-Mickaël Laventure Kevin Kern Kevin Parsons Kevin Xu +Kirtana Ashok Kitt Hsu Kohei Tokunaga Krasi Georgiev @@ -89,6 +97,7 @@ lengrongfu <1275177125@qq.com> Li Yuxuan Lifubang Lu Jingxiao +Mahamed Ali Maksym Pavlenko <865334+mxpv@users.noreply.github.com> Maksym Pavlenko Maksym Pavlenko @@ -96,6 +105,7 @@ Mario Hros Mario Hros Mario Macias Mark Gordon +Markus Lehtonen Marvin Giessing Mathis Michel Michael Crosby @@ -108,6 +118,7 @@ Ning Li ningmingxiao Nishchay Kumar Oliver Stenbom +Pan Yibo Phil Estes Phil Estes Qian Zhang @@ -147,6 +158,7 @@ wangzhan Wei Fu Wei Fu wen chen +William Chen Xiaodong Zhang Xuean Yan Yang Yang @@ -155,6 +167,7 @@ Yuxing Liu Zechun Chen zhang he Zhang Wei +zhangpeng zhangyadong Zhenguang Zhu Zhiyu Li From 2dfae4c4b61d5e5cfe24c0244cd5b6d789a47500 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Mon, 30 Oct 2023 05:57:53 -0700 Subject: [PATCH 2/2] Prepare release notes for v2.0.0-beta.0 Signed-off-by: Derek McGowan --- releases/v2.0.0-beta.toml | 33 +++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 releases/v2.0.0-beta.toml diff --git a/releases/v2.0.0-beta.toml b/releases/v2.0.0-beta.toml new file mode 100644 index 000000000..67dc87b30 --- /dev/null +++ b/releases/v2.0.0-beta.toml @@ -0,0 +1,33 @@ +# 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-]+)$" + +# previous release +previous = "v1.7.0" + +pre_release = true + +preface = """\ +The first major release of containerd 2.x focuses on the continued stability of +containerd's core feature set with an easy upgrade from containerd 1.x. This +release includes the stabilization of new features added in the last 1.x release +as well as the removal of features which were deprecated in 1.x. The goal is to +support the vast community of containerd users well into the future along with +their ever increasing deployment footprints and variety of use cases. +""" + +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. +""" + +override_deps."github.com/containerd/log".previous = "cf9777876edf6a4aa230c739bc7eec5ab8349e9c" \ No newline at end of file diff --git a/version/version.go b/version/version.go index c9f9dd55e..f35f66c64 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+unknown" + Version = "2.0.0-beta.0+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.