diff --git a/.travis.yml b/.travis.yml index eb7c218..cf26d49 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: go go: - - "1.11" - "1.12" - "1.13" + - "1.14" - stable install: @@ -16,4 +16,3 @@ script: - make test - $GOPATH/bin/overalls -project=github.com/hellofresh/kandalf -covermode=count - if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then bash <(curl -s https://codecov.io/bash) -f overalls.coverprofile; fi - diff --git a/README.md b/README.md index 009b8b1..9d69a6a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The main idea is to read messages from provided exchanges in [RabbitMQ](https:// Application uses intermediate permanent storage for keeping read messages in case of Kafka unavailability. -Service is written in Go language and can be build with go compiler of version 1.6 and above. +Service is written in Go language and can be build with go compiler of version 1.12 and above. ## Configuring @@ -110,6 +110,5 @@ To start contributing, please check [CONTRIBUTING](CONTRIBUTING.md). ## Documentation -* Kandalf Docs: https://hellofresh.gitbooks.io/kandalf * Kandalf Go Docs: https://godoc.org/github.com/hellofresh/kandalf * Go lang: https://golang.org/ diff --git a/go.mod b/go.mod index f16dc7d..45a595e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hellofresh/kandalf -go 1.12 +go 1.14 require ( github.com/Shopify/sarama v1.17.0