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