travis: bump continuous integration to 1.13 (#1693)

Bump continuous integration to include Go 1.13, drop 1.10 from
compatiblity file.
This commit is contained in:
Alessandro Arzilli 2019-09-15 20:37:07 +02:00 committed by Derek Parker
parent 58a7c84e01
commit 223eb4cb5f
2 changed files with 2 additions and 2 deletions

@ -7,9 +7,9 @@ os:
go: go:
- tip - tip
- 1.13.x
- 1.12.x - 1.12.x
- 1.11.x - 1.11.x
- 1.10.x
matrix: matrix:
allow_failures: allow_failures:

@ -5,7 +5,7 @@ import (
) )
var ( var (
minSupportedVersionOfGoMinor = 10 minSupportedVersionOfGoMinor = 11
maxSupportedVersionOfGoMinor = 13 maxSupportedVersionOfGoMinor = 13
goTooOldErr = fmt.Errorf("Version of Go is too old for this version of Delve (minimum supported version 1.%d, suppress this error with --check-go-version=false)", minSupportedVersionOfGoMinor) goTooOldErr = fmt.Errorf("Version of Go is too old for this version of Delve (minimum supported version 1.%d, suppress this error with --check-go-version=false)", minSupportedVersionOfGoMinor)
dlvTooOldErr = fmt.Errorf("Version of Delve is too old for this version of Go (maximum supported version 1.%d, suppress this error with --check-go-version=false)", maxSupportedVersionOfGoMinor) dlvTooOldErr = fmt.Errorf("Version of Delve is too old for this version of Go (maximum supported version 1.%d, suppress this error with --check-go-version=false)", maxSupportedVersionOfGoMinor)