X Tutup
Skip to content

Commit dcda690

Browse files
committed
Prepare 1.1.1-rc.0 release
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
1 parent 5845981 commit dcda690

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

releases/v1.1.1-rc.0.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# commit to be tagged for new release
2+
commit = "HEAD"
3+
4+
project_name = "containerd"
5+
github_repo = "containerd/containerd"
6+
7+
# previous release
8+
previous = "v1.1.0"
9+
10+
pre_release = true
11+
12+
preface = """\
13+
This is the first patch release for the `containerd` 1.1 release. This
14+
includes bug fixes related to CRI, image pull, and native snapshotter.
15+
16+
## CRI Plugin
17+
Fixes for working set memory calculation and privileged container creation.
18+
19+
## Image Pull
20+
Fix for a size validation bug with some registries which impacts the
21+
CRI plugin and clients.
22+
23+
## Native Snapshotter
24+
Fix for bug in layers containing large files.
25+
26+
Please see the changelog for full details.
27+
"""
28+
29+
# notable prs to include in the release notes, 1234 is the pr number
30+
[notes]
31+
32+
[breaking]

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
Package = "github.com/containerd/containerd"
2222

2323
// Version holds the complete version number. Filled in at linking time.
24-
Version = "1.1.0+unknown"
24+
Version = "1.1.1+unknown"
2525

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

0 commit comments

Comments
 (0)
X Tutup