From 998eeaa1d0ffbb116dd1fd11b303b5fbdae70676 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sun, 24 Nov 2019 13:28:27 -0800 Subject: [PATCH] Set `go 1.13` in go.mod to avoid a diff at build * `go` modifies `go.mod` during the build to add `go 1.13`, which causes the build to be considered dirty --- CHANGES.md | 2 +- go.mod | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c0f6351d..3f9dd0f9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -18,7 +18,7 @@ Notable changes between releases. Releases `v0.8.1` and `v0.8.2` were not built cleanly * Release tags and container images have been removed -* Caused by go get golint (module-aware) mutating `go.mod` on Travis (see [#775](https://github.com/poseidon/matchbox/pull/775)) +* Caused by go get golint (module-aware) mutating `go.mod` on Travis (see [#775](https://github.com/poseidon/matchbox/pull/775), [#777](https://github.com/poseidon/matchbox/pull/777)) ## v0.8.0 diff --git a/go.mod b/go.mod index ed74fd96..053a2c55 100644 --- a/go.mod +++ b/go.mod @@ -28,3 +28,5 @@ require ( gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect gopkg.in/yaml.v2 v2.0.0-20151201162745-f7716cbe52ba // indirect ) + +go 1.13