Skip to content

Commit d03a819

Browse files
dmitshurgopherbot
authored andcommitted
go/vcs: isolate into a nested module
The previous change marked the vcs package as deprecated. This change isolates it into a nested module where it will be tagged as v0.1.0-deprecated, its last version. The next change deletes the nested module from the tools repo. For golang/go#57051. Change-Id: I0b7df60dbe87c1d97f150e5f8ca10e9d281a9364 Reviewed-on: https://go-review.googlesource.com/c/tools/+/505955 gopls-CI: kokoro <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent a659412 commit d03a819

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

go/vcs/go.mod

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Deprecated: This module contains one deprecated package.
2+
// See the package deprecation notice for more information.
3+
module golang.org/x/tools/go/vcs
4+
5+
go 1.19
6+
7+
require golang.org/x/sys v0.9.0

go/vcs/go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
golang.org/x/sys v0.9.0 h1:KS/R3tvhPqvJvwcKfnBHJwwthS11LRhmM5D59eEXa0s=
2+
golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

go/vcs/vcs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// It needed to be manually kept in sync with upstream when changes were
1717
// made to cmd/go/internal/get, as tracked in go.dev/issue/11490.
1818
// By now, it has diverged significantly from upstream cmd/go/internal/get
19-
// behavior and is not being actively updated.
19+
// behavior and will not receive any further updates.
2020
package vcs // import "golang.org/x/tools/go/vcs"
2121

2222
import (

0 commit comments

Comments
 (0)