...
Text file
src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.1.txt
1example.com/latemigrate/v2 v2.0.1
2written by hand
3
4This repository migrated to modules in v2.0.1 after v2.0.0 was already tagged.
5All versions require rsc.io/quote so we can test downgrades.
6
7v2.0.1 belongs to example.com/latemigrate/v2.
8
9-- .mod --
10module example.com/latemigrate/v2
11
12require rsc.io/quote v1.3.0
13-- .info --
14{"Version":"v2.0.1"}
15-- go.mod --
16module example.com/latemigrate/v2
17
18require rsc.io/quote v1.3.0
19-- late.go --
20package late
View as plain text