From e6a8bcfb0ccf254165d8b5a06b61a7a8d8674042 Mon Sep 17 00:00:00 2001 From: Erik Dubbelboer Date: Sat, 28 Sep 2019 10:10:20 +0200 Subject: [PATCH] Add go version to go.mod, test with 1.13.1 I chose 1.11 for the version in the go.mod file based on the information in this issue: https://github.com/golang/go/issues/30791 --- .travis.yml | 2 +- go.mod | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c5734f7e15..b262c6941d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ os: - osx go: - tip - - 1.13 + - 1.13.x - 1.12.x - 1.11.x - 1.10.x diff --git a/go.mod b/go.mod index 80e778353a..3e1c929b58 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,7 @@ module github.com/valyala/fasthttp +go 1.11 + require ( github.com/klauspost/compress v1.8.2 github.com/klauspost/cpuid v1.2.1 // indirect