From 43174ee6addb26a0e52f3fbed4a76bbbcc151ae0 Mon Sep 17 00:00:00 2001
From: Samuel Karp <samuelkarp@google.com>
Date: Fri, 6 Sep 2024 16:07:00 -0700
Subject: [PATCH] Prepare release notes for v1.7.22

Signed-off-by: Samuel Karp <samuelkarp@google.com>
---
 releases/v1.7.22.toml | 27 +++++++++++++++++++++++++++
 version/version.go    |  2 +-
 2 files changed, 28 insertions(+), 1 deletion(-)
 create mode 100644 releases/v1.7.22.toml

diff --git a/releases/v1.7.22.toml b/releases/v1.7.22.toml
new file mode 100644
index 000000000000..5c4b9519a7b8
--- /dev/null
+++ b/releases/v1.7.22.toml
@@ -0,0 +1,27 @@
+# commit to be tagged for new release
+commit = "HEAD"
+
+# project_name is used to refer to the project in the notes
+project_name = "containerd"
+
+# github_repo is the github project, only github is currently supported
+github_repo = "containerd/containerd"
+
+# match_deps is a pattern to determine which dependencies should be included
+# as part of this release. The changelog will also include changes for these
+# dependencies based on the change in the dependency's version.
+match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$"
+
+# previous release of this project for determining changes
+previous = "v1.7.21"
+
+# pre_release is whether to include a disclaimer about being a pre-release
+pre_release = false
+
+# preface is the description of the release which precedes the author list
+# and changelog. This description could include highlights as well as any
+# description of changes. Use markdown formatting.
+preface = """\
+The twenty-second patch release for containerd 1.7 contains various fixes
+and updates.
+"""
diff --git a/version/version.go b/version/version.go
index 315867d21f5a..4546b9445d83 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.7.21+unknown"
+	Version = "1.7.22+unknown"
 
 	// Revision is filled with the VCS (e.g. git) revision being used to build
 	// the program at linking time.