teamcity,goversion: drop Go version 1.13 from test matrix (#2345)

Go 1.16 has been released.
This commit is contained in:
Alessandro Arzilli 2021-02-21 16:58:56 +01:00 committed by GitHub
parent 3269d7a120
commit 8a8e540fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

@ -34,15 +34,13 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
version = "2020.2"
val targets = arrayOf(
"linux/amd64/1.13",
"linux/amd64/1.14",
"linux/amd64/1.15",
"linux/amd64/1.16",
"linux/amd64/tip",
"linux/386/1.15",
"linux/386/1.16",
"windows/amd64/1.15",
"windows/amd64/1.16",
"windows/amd64/tip"
)

@ -6,7 +6,7 @@ import (
var (
MinSupportedVersionOfGoMajor = 1
MinSupportedVersionOfGoMinor = 13
MinSupportedVersionOfGoMinor = 14
MaxSupportedVersionOfGoMajor = 1
MaxSupportedVersionOfGoMinor = 16
goTooOldErr = fmt.Errorf("Version of Go is too old for this version of Delve (minimum supported version %d.%d, suppress this error with --check-go-version=false)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)