diff options
| author | Dmitri Shuralyov <dmitshur@golang.org> | 2025-02-26 17:43:20 -0500 |
|---|---|---|
| committer | Dmitri Shuralyov <dmitshur@golang.org> | 2025-02-26 17:54:50 -0500 |
| commit | 2e06797ff13dad3a7916a20f8b65bc9ac14c93dc (patch) | |
| tree | 084a5f74f1bc19ab8302ebbcf77411df01bf3d3a | |
| parent | c725e441291aec017e7052ba8e776c59a7295764 (diff) | |
| download | go-x-website-2e06797ff13dad3a7916a20f8b65bc9ac14c93dc.tar.xz | |
tour: deprecate and retract the nested moduletour/v0.1.0
It stopped being a nested module and its content was merged into
x/website in CL 323897. It was never intended to be a published
module, rather it happened to be one during earlier development
of x/website.
Because the golang.org/x/website/tour module has a longer path than
the golang.org/x/website module, it gets in the way when trying to
install or run the latest version of the tour command. So, deprecate
and retact all of its versions to fix that.
For golang/go#47236.
Change-Id: I88615fc25cd6531d4650210ca8063c53a68ac81a
| -rw-r--r-- | tour/go.mod | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tour/go.mod b/tour/go.mod index a1d1ebfb..3d75c354 100644 --- a/tour/go.mod +++ b/tour/go.mod @@ -1,6 +1,12 @@ +// Deprecated: The content of this nested module has been +// merged into the top-level module in go.dev/cl/323897. +// Use tour from the golang.org/x/website module instead. module golang.org/x/website/tour -go 1.11 +// Retract all pseudo-versions and the retraction version. +retract [v0.0.0-0, v0.1.0] + +go 1.16 require ( golang.org/x/tools v0.1.3-0.20210525215409-a3eb095d6aee |
