From 37de02378c4a20eb38ac988f0e4e43181ef421e6 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 6 Aug 2025 14:04:06 -0700 Subject: [PATCH] Prepare release notes for v2.0.0-beta.0 Signed-off-by: Derek McGowan --- releases/v2.0.0-beta.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 releases/v2.0.0-beta.toml diff --git a/releases/v2.0.0-beta.toml b/releases/v2.0.0-beta.toml new file mode 100644 index 0000000000..0912bea9fc --- /dev/null +++ b/releases/v2.0.0-beta.toml @@ -0,0 +1,21 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "moby" +github_repo = "moby/moby" +ignore_deps = [ "github.com/moby/moby" ] + +# previous release +previous = "v28.2.2" + +pre_release = true + +preface = """\ +The first release of the Moby Go module and v2 release. This represents a major +change to the code organization, completing the rename to `github.com/moby/moby`. + +While this completes the transition to Go modules for Moby, importers +who are using `github.com/docker/docker` should update to use the +`github.com/moby/moby/api` and `github.com/moby/moby/client` modules rather than +continuing to use the `github.com/docker/docker` import paths. +"""