We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a54fbf commit 07cb3feCopy full SHA for 07cb3fe
.goreleaser.yml
@@ -15,7 +15,7 @@
15
before:
16
hooks:
17
- go mod download
18
- - go mod tidy
+ - go mod tidy -compat=1.17
19
builds:
20
-
21
ldflags:
README.md
@@ -700,7 +700,7 @@ replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
700
Be aware that even after you add a `replace` directive, `go mod graph` will still show the old dependency version.
701
You can verify the new version is actually used via the `go list` command:
702
```shell
703
-$ go mod tidy
+$ go mod tidy -compat=1.17
704
$ go list -deps | grep github.com/gogo/protobuf
705
github.com/gogo/protobuf v1.2.1 => github.com/gogo/protobuf v1.3.2
706
```
0 commit comments