Merge pull request #2550 from dmcgowan/release-1.2.0-beta.0

Add first v1.2.0 beta release notes
This commit is contained in:
Derek McGowan 2018-08-16 00:57:40 -07:00 committed by GitHub
commit 6f13ff3ea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 1 deletions

View File

@ -0,0 +1,43 @@
# commit to be tagged for new release
commit = "HEAD"
project_name = "containerd"
github_repo = "containerd/containerd"
match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$"
# previous release
previous = "v1.1.0"
pre_release = true
preface = """\
After two major releases of containerd, we have brought back the beta releases to
introduce a new runtime interface and new APIs. The 1.2 release will be fully
backwards compatibility and have no API breakage. The API additions included in
this release is focused on making containerd more extensible and cover more user
cases.
### New V2 Runtime
A new v2 runtime has been added with a stable gRPC interface for managing
containers through external plugins.
### New Proxy Plugins
A new proxy plugin configuration has been added to allow external snapshotters
be connected to containerd using gRPC.
### API Changes
Minor API additions
"""
# notable prs to include in the release notes, 1234 is the pr number
[notes]
[breaking]
[rename_deps]
[rename_deps.ttrpc]
old = "github.com/stevvooe/ttrpc"
new = "github.com/containerd/ttrpc"

View File

@ -21,7 +21,7 @@ var (
Package = "github.com/containerd/containerd"
// Version holds the complete version number. Filled in at linking time.
Version = "1.1.0+unknown"
Version = "1.2.0-beta.0+unknown"
// Revision is filled with the VCS (e.g. git) revision being used to build
// the program at linking time.