From 1de1d1473de55c580e280050760385a1301e29f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ken-H=C3=A5vard=20Lieng?= Date: Fri, 31 Aug 2018 04:06:29 +0200 Subject: [PATCH] Drop go 1.8 support --- .travis.yml | 5 ++--- README.md | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ba1f8a53..cbc0c85f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: go go: - - "1.8.x" - "1.9.x" - "1.10.x" - "1.11.x" @@ -28,5 +27,5 @@ script: - yarn test:verbose - gulp build - cd .. - - go vet $(go list ./... | grep -v '/vendor/') - - go test -v -race $(go list ./... | grep -v '/vendor/') + - go vet ./... + - go test -v -race ./... diff --git a/README.md b/README.md index 637205c7..aa9028b5 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ There is a few different ways of getting it: - [Other versions](https://github.com/khlieng/dispatch/releases) ### 2. Go -This requires a [Go environment](http://golang.org/doc/install), version 1.8 or greater. +This requires a [Go environment](http://golang.org/doc/install), version 1.9 or greater. Fetch, compile and run dispatch: ```bash