all: update go.mod files to target Go 1.13

Since the main README recommends Go 1.13 or later, let's make the go.mod
files reflect that. This will enable starting to use new language
features.

Modules that still build on 1.12 will continue to work on that version
just fine; this line is just a hint to enable new language features for
versions of Go new enough.

Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
This commit is contained in:
Daniel Martí
2019-09-07 00:30:00 +02:00
committed by Elias Naur
parent b4433da21b
commit 85843f1f29
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
module gioui.org/apps module gioui.org/apps
go 1.12 go 1.13
require ( require (
gioui.org/ui v0.0.0-20190902131729-7ad60e08787b gioui.org/ui v0.0.0-20190902131729-7ad60e08787b
+1 -1
View File
@@ -1,6 +1,6 @@
module gioui.org/cmd module gioui.org/cmd
go 1.12 go 1.13
require ( require (
golang.org/x/image v0.0.0-20190802002840-cff245a6509b golang.org/x/image v0.0.0-20190802002840-cff245a6509b
+1 -1
View File
@@ -1,6 +1,6 @@
module gioui.org/ui module gioui.org/ui
go 1.12 go 1.13
require ( require (
golang.org/x/image v0.0.0-20190703141733-d6a02ce849c9 golang.org/x/image v0.0.0-20190703141733-d6a02ce849c9
+1 -1
View File
@@ -1,3 +1,3 @@
module gioui.org/website module gioui.org/website
go 1.12 go 1.13