diff --git a/.mailmap b/.mailmap index 83bb03cd002c..faf769cc1269 100644 --- a/.mailmap +++ b/.mailmap @@ -87,6 +87,7 @@ Michael Crosby Michael Katsoulis Mike Brown Mohammad Asif Siddiqui +Nabeel Rana Ng Yang Ning Li ningmingxiao @@ -121,6 +122,7 @@ Tõnis Tiigi Wade Lee Wade Lee Wade Lee <21621232@zju.edu.cn> +Wang Bing wanglei wanglei wangzhan diff --git a/releases/v1.6.4.toml b/releases/v1.6.4.toml new file mode 100644 index 000000000000..dc38bf7db30c --- /dev/null +++ b/releases/v1.6.4.toml @@ -0,0 +1,21 @@ +# 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.3" + +pre_release = false + +preface = """\ +The fourth patch release for containerd 1.6 includes two fixes for CNI and SELinux. + +### Notable Updates + +* **Update go-cni to fix teardown regression** ([#6877](https://github.com/containerd/containerd/pull/6877)) +* **Fix broken SELinux relabeling for Kubernetes volume mounts** ([#6878](https://github.com/containerd/containerd/pull/6878)) + +See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index 806e3e0d73e5..b5e00c5d820d 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.3+unknown" + Version = "1.6.4+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.