Skip to content

Commit 8b098d0

Browse files
authored
Merge pull request #2074 from stevvooe/prepare-1.0.2-rc.0
release: prepare 1.0.2-rc.0
2 parents b17f5b8 + a67e9d2 commit 8b098d0

2 files changed

Lines changed: 35 additions & 1 deletion

File tree

releases/v1.0.2-rc.0.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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.0.1"
9+
10+
pre_release = true
11+
12+
preface = """\
13+
This is the second patch release for `containerd` in the 1.0 series. There are
14+
several fixes to reduce memory usage and garbage collection pressure in the
15+
shim. The content store has a few fixes to address cases where download
16+
resumption wasn't working properly. The image store has fixes to be more
17+
efficient and to handle edge cases in the garbage collector.
18+
19+
The most critical fix addresses a hang in runc that can happen due to a race
20+
condition around FIFOs. Make sure to update your runc binary if you are
21+
affected. The fix is described in
22+
https://github.com/opencontainers/runc/pull/1698. Make sure to update to the
23+
runc version in
24+
https://github.com/containerd/containerd/blob/master/RUNC.md to ensure you are not affected.
25+
26+
In addition to the above, https://github.com/containerd/containerd/pull/2063
27+
addresses an issue where duplicate directory entries can land in a layer diff
28+
if both the metadata and a child entry are changed.
29+
"""
30+
31+
# notable prs to include in the release notes, 1234 is the pr number
32+
[notes]
33+
34+
[breaking]

version/version.go

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

77
// Version holds the complete version number. Filled in at linking time.
8-
Version = "1.0.1+unknown"
8+
Version = "1.0.2-rc.0+unknown"
99

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

0 commit comments

Comments
 (0)