Skip to content

Commit

Permalink
Merge pull request containerd#9194 from dcantah/release-notes-1.7.7
Browse files Browse the repository at this point in the history
[release/1.7] Prepare release notes for v1.7.7
  • Loading branch information
dmcgowan authored Oct 9, 2023
2 parents 8664fca + a34fa56 commit 8c08766
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions releases/v1.7.7.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# 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.6"

# 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 seventh patch release for containerd 1.7 contains various fixes and updates.
### Notable Updates
* **Require plugins to succeed after registering readiness** ([#9165](https://github.com/containerd/containerd/pull/9165))
* **Handle unexpected shim kill events** ([#9132](https://github.com/containerd/containerd/pull/9132))
* **Build binaries with Go 1.21.1** ([#9167](https://github.com/containerd/containerd/pull/9167))
* **cri: Stop recommending disable_cgroup** ([#9168](https://github.com/containerd/containerd/pull/9168))
* **remotes/docker: Fix MountedFrom prefixed with target repository** ([#9193](https://github.com/containerd/containerd/pull/9193))
* **remotes: always try to establish tls connection when tls configured** ([#9188](https://github.com/containerd/containerd/pull/9188))
* **NRI: Add support for rlimits** ([#48](https://github.com/containerd/nri/pull/48))
See the changelog for complete list of changes"""
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var (
Package = "github.com/containerd/containerd"

// Version holds the complete version number. Filled in at linking time.
Version = "1.7.6+unknown"
Version = "1.7.7+unknown"

// Revision is filled with the VCS (e.g. git) revision being used to build
// the program at linking time.
Expand Down

0 comments on commit 8c08766

Please sign in to comment.