From fbdd5281996af1aa4cfd4742ac277dbca5440192 Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Tue, 30 Jun 2020 09:31:22 -0400 Subject: [PATCH] Prepare v1.3.6 fix release Signed-off-by: Phil Estes --- releases/v1.3.6.toml | 26 ++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 releases/v1.3.6.toml diff --git a/releases/v1.3.6.toml b/releases/v1.3.6.toml new file mode 100644 index 0000000000..4e1f34d45c --- /dev/null +++ b/releases/v1.3.6.toml @@ -0,0 +1,26 @@ +# 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.3.5" + +pre_release = false + +preface = """\ +The sixth patch release for `containerd` 1.3 includes a release process fix to not require the latest libseccomp. Prior +releases in this series were pinned to libseccomp 2.3.3 and this update corrects the error in the v1.3.5 release which +linked to the latest libseccomp. + +### Notable Updates + +* Pin libseccomp to 2.3.3 for the GH Actions-based release.yml [containerd/containerd#4352](https://github.com/containerd/containerd/pull/4352) +""" + +# notable prs to include in the release notes, 1234 is the pr number +[notes] + +[breaking] diff --git a/version/version.go b/version/version.go index 672b685fcb..687978b249 100644 --- a/version/version.go +++ b/version/version.go @@ -21,7 +21,7 @@ var ( Package = "github.com/containerd/containerd" // Version holds the complete version number. Filled in at linking time. - Version = "1.3.5+unknown" + Version = "1.3.6+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.