Skip to content

Commit 50a3e7f

Browse files
committed
go.mod: add Go version directive
Go 1.13 really wants a Go version declaration at the bottom of the file and will modify it when any go command is run if it isn't present. Because we'd like our files to be tidy and not show up as modified when we build or run tests, add a Go version declaration for Go 1.11 (the oldest we support) at the bottom of the file.
1 parent 415b398 commit 50a3e7f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ require (
55
github.com/pmezard/go-difflib v1.0.0 // indirect
66
github.com/stretchr/testify v1.2.2
77
)
8+
9+
go 1.11

0 commit comments

Comments
 (0)