From f0fbe06fdccfdcb3ae9fd4a9a5958a43332117d9 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Mon, 5 Dec 2022 16:29:36 -0800 Subject: [PATCH] Prepare release notes for v1.5.15 Signed-off-by: Derek McGowan --- releases/v1.5.15.toml | 23 +++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 releases/v1.5.15.toml diff --git a/releases/v1.5.15.toml b/releases/v1.5.15.toml new file mode 100644 index 0000000000000..1913f1fe58780 --- /dev/null +++ b/releases/v1.5.15.toml @@ -0,0 +1,23 @@ +# 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.5.14" + +pre_release = false + +preface = """\ +The fifteenth patch release for containerd 1.5 includes various fixes including a +long time issue with CNI resource leakage. + +### Notable Updates + +* **Fix CNI leaks by changing pod network setup order in CRI plugin** ([#7464](https://github.com/containerd/containerd/pull/7464)) +* **Fix request retry on push** ([#7479](https://github.com/containerd/containerd/pull/7479)) +* **Fix lease labels unexpectedly overwriting expiration** ([#7746](https://github.com/containerd/containerd/pull/7746)) + +See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index b818cba6d0e73..d0a2c006d55e3 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.5.14+unknown" + Version = "1.5.15+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.