From 3d24d97ba0487f3279a3c2d05e99ae190a7f95a9 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Thu, 1 Dec 2022 15:58:02 -0800 Subject: [PATCH] Prepare release notes for v1.6.11 Signed-off-by: Derek McGowan --- releases/v1.6.11.toml | 22 ++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 releases/v1.6.11.toml diff --git a/releases/v1.6.11.toml b/releases/v1.6.11.toml new file mode 100644 index 000000000000..a852e960263e --- /dev/null +++ b/releases/v1.6.11.toml @@ -0,0 +1,22 @@ +# 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.6.10" + +pre_release = false + +preface = """\ +The eleventh patch release for containerd 1.6 contains a various fixes and updates. + +### Notable Updates +* **Add pod UID annotation in CRI plugin** ([#7735](https://github.com/containerd/containerd/pull/7735)) +* **Fix nil pointer deference for Windows containers in CRI plugin** ([#7737](https://github.com/containerd/containerd/pull/7737)) +* **Fix lease labels unexpectedly overwriting expiration** ([#7745](https://github.com/containerd/containerd/pull/7745)) +* **Fix for simultaneous diff creation using the same parent snapshot** ([#7756](https://github.com/containerd/containerd/pull/7756)) + +See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index cf804ade4030..476c6c4b2e0f 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.6.10+unknown" + Version = "1.6.11+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.