From 5ab50846c0250bdcfd7935684839a356f32c22b4 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 15 Aug 2018 11:53:42 -0700 Subject: [PATCH] Add v1.2.0 beta 0 release notes Update version and add release notes Signed-off-by: Derek McGowan --- releases/v1.2.0-beta.0.toml | 43 +++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 releases/v1.2.0-beta.0.toml diff --git a/releases/v1.2.0-beta.0.toml b/releases/v1.2.0-beta.0.toml new file mode 100644 index 000000000..15db37fac --- /dev/null +++ b/releases/v1.2.0-beta.0.toml @@ -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" diff --git a/version/version.go b/version/version.go index 051919a68..a580a1b45 100644 --- a/version/version.go +++ b/version/version.go @@ -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.