chore(dep): Changes minimum support go version to go1.16 (#3361)

This commit is contained in:
mstmdev
2022-10-16 09:32:28 +08:00
committed by GitHub
parent 6296175f70
commit fa58bff301
3 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ import (
"strings"
)
const ginSupportMinGoVer = 15
const ginSupportMinGoVer = 16
// IsDebugging returns true if the framework is running in debug mode.
// Use SetMode(gin.ReleaseMode) to disable debug mode.
@ -67,7 +67,7 @@ func getMinVer(v string) (uint64, error) {
func debugPrintWARNINGDefault() {
if v, e := getMinVer(runtime.Version()); e == nil && v < ginSupportMinGoVer {
debugPrint(`[WARNING] Now Gin requires Go 1.15+.
debugPrint(`[WARNING] Now Gin requires Go 1.16+.
`)
}