From 223eb4cb5f9a3d3e8d18048e050d462b8b795257 Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Sun, 15 Sep 2019 20:37:07 +0200 Subject: [PATCH] travis: bump continuous integration to 1.13 (#1693) Bump continuous integration to include Go 1.13, drop 1.10 from compatiblity file. --- .travis.yml | 2 +- pkg/goversion/compat.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 746cbb0d..6e220989 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,9 @@ os: go: - tip + - 1.13.x - 1.12.x - 1.11.x - - 1.10.x matrix: allow_failures: diff --git a/pkg/goversion/compat.go b/pkg/goversion/compat.go index 23e41014..4d96a1d2 100644 --- a/pkg/goversion/compat.go +++ b/pkg/goversion/compat.go @@ -5,7 +5,7 @@ import ( ) var ( - minSupportedVersionOfGoMinor = 10 + minSupportedVersionOfGoMinor = 11 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) 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) -- GitLab