Skip to content

Commit c62af07

Browse files
committed
Prepare 1.1.3 release notes
Signed-off-by: Lantao Liu <[email protected]>
1 parent 41ccfba commit c62af07

2 files changed

Lines changed: 39 additions & 1 deletion

File tree

releases/v1.1.3.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# commit to be tagged for new release
2+
commit = "HEAD"
3+
4+
project_name = "containerd"
5+
github_repo = "containerd/containerd"
6+
match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$"
7+
8+
# previous release
9+
previous = "v1.1.2"
10+
11+
pre_release = false
12+
13+
preface = """\
14+
This is the third patch release for the `containerd` 1.1 release. This
15+
release includes a new config option in CRI plugin and several bug fixes
16+
in containerd client, ctr and native snapshotter.
17+
18+
Containerd now sets gid to 0 if it is not specified. This matches the docker
19+
behavior. The change was applied to containerd client, `ctr` and CRI plugin.
20+
21+
## CRI Plugin
22+
Add `no_pivot` config option. It is useful when running containerd on
23+
ramdisk.
24+
25+
## ctr
26+
Fix a bug in `ctr run` that the `--no-pivot` and `--rootfs` flags are missing.
27+
28+
## Native Snapshotter
29+
Fix a bug in the native snapshotter that the permission bits of `/`
30+
is set to `0700` unexpectedly. It is now set to `0755`.
31+
32+
Please see the changelog for full details.
33+
"""
34+
35+
# notable prs to include in the release notes, 1234 is the pr number
36+
[notes]
37+
38+
[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.2+unknown"
24+
Version = "1.1.3+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)