Commit 7a64008
committed
Go 1.13 introduced version validation with some specific requirements:
1. Modules listed with `+incompatible` must not contain a `go.mod`.
2. Modules with versions other than `v0` or `v1` must have import paths
that specify the version. (Such as `github.com/modulename/v2`).
https://golang.org/doc/go1.13#version-validation
Given these two requirements, we needed to update the go.mod file in this
repo to include the pseudo-versions of modules
(ie, `v0.0.0-20190620085101-78d2af792bab` instead of `v12.0.0+incompatible`).
The specified versions still point to the same commit in their respective git repos.1 parent 749e1cf commit 7a64008
3 files changed
+19
-109
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | | - | |
24 | | - | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
38 | 41 | | |
39 | 42 | | |
0 commit comments