-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Derek McGowan <derek@mcg.dev>
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 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.18" | ||
|
||
# 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 nineteenth patch release for containerd 1.7 contains various updates and | ||
splits the main module from the api module in preparation for the same change | ||
in containerd 2.0. Splitting the modules will allow 1.7 and 2.x to both exist | ||
as transitive dependencies without running into API registration errors. | ||
Projects should use this version as the minimum 1.7 version in preparing to | ||
use containerd 2.0 or to be imported alongside it. | ||
""" | ||
|
||
override_deps."github.com/containerd/platforms".previous = "f18f3c661f7de73d5569f61ff72d98dae1c1700a" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters