Skip to content

Commit 5ab5084

Browse files
committed
Add v1.2.0 beta 0 release notes
Update version and add release notes Signed-off-by: Derek McGowan <[email protected]>
1 parent 0ffb948 commit 5ab5084

2 files changed

Lines changed: 44 additions & 1 deletion

File tree

releases/v1.2.0-beta.0.toml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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.0"
10+
11+
pre_release = true
12+
13+
preface = """\
14+
After two major releases of containerd, we have brought back the beta releases to
15+
introduce a new runtime interface and new APIs. The 1.2 release will be fully
16+
backwards compatibility and have no API breakage. The API additions included in
17+
this release is focused on making containerd more extensible and cover more user
18+
cases.
19+
20+
### New V2 Runtime
21+
22+
A new v2 runtime has been added with a stable gRPC interface for managing
23+
containers through external plugins.
24+
25+
### New Proxy Plugins
26+
27+
A new proxy plugin configuration has been added to allow external snapshotters
28+
be connected to containerd using gRPC.
29+
30+
### API Changes
31+
32+
Minor API additions
33+
"""
34+
35+
# notable prs to include in the release notes, 1234 is the pr number
36+
[notes]
37+
38+
[breaking]
39+
40+
[rename_deps]
41+
[rename_deps.ttrpc]
42+
old = "github.com/stevvooe/ttrpc"
43+
new = "github.com/containerd/ttrpc"

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.2.0-beta.0+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)