build: drop support for go 1.10

Michael Muré created

Change summary

.travis.yml | 2 --
git-bug.go  | 4 ++--
go.mod      | 2 +-
3 files changed, 3 insertions(+), 5 deletions(-)

Detailed changes

.travis.yml 🔗

@@ -1,7 +1,5 @@
 matrix:
   include:
-  - language: go
-    go: 1.10.x
   - language: go
     go: 1.11.x
   - language: go

git-bug.go 🔗

@@ -9,8 +9,8 @@ package main
 import (
 	"github.com/MichaelMure/git-bug/commands"
 
-	// minimal go version is 1.10
-	_ "github.com/theckman/goconstraint/go1.10/gte"
+	// minimal go version is 1.11
+	_ "github.com/theckman/goconstraint/go1.11/gte"
 )
 
 func main() {

go.mod 🔗

@@ -1,6 +1,6 @@
 module github.com/MichaelMure/git-bug
 
-go 1.10
+go 1.11
 
 require (
 	github.com/99designs/gqlgen v0.10.3-0.20200205113530-b941b970f0b6