From ad26f471332085b30678506f2a3aa7950166ff32 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 28 Jul 2021 23:33:29 -0700 Subject: [PATCH] Prepare release notes for v1.4.9 Signed-off-by: Derek McGowan --- releases/v1.4.9.toml | 23 +++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 releases/v1.4.9.toml diff --git a/releases/v1.4.9.toml b/releases/v1.4.9.toml new file mode 100644 index 000000000000..2bc66fbcefb1 --- /dev/null +++ b/releases/v1.4.9.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.4.8" + +pre_release = false + +preface = """\ +The ninth patch release for containerd 1.4 updates runc to 1.0.1 and contains +other minor updates. + +### Notable Updates + +* **Update runc binary to 1.0.1** [#5751](https://github.com/containerd/containerd/pull/5751) +* **Update pull authorization logic on redirect** [#5504](https://github.com/containerd/containerd/pull/5504) +* **Fix user agent used for fetching registry authentication tokens** [#5761](https://github.com/containerd/containerd/pull/5761) + +See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index 301ded84ab2b..a5dd7c5ec1c3 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.4.8+unknown" + Version = "1.4.9+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.