|
@@ -13,7 +13,7 @@ import (
|
|
|
"strings"
|
|
"strings"
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
-const ginSupportMinGoVer = 8
|
|
|
|
|
|
|
+const ginSupportMinGoVer = 10
|
|
|
|
|
|
|
|
// IsDebugging returns true if the framework is running in debug mode.
|
|
// IsDebugging returns true if the framework is running in debug mode.
|
|
|
// Use SetMode(gin.ReleaseMode) to disable debug mode.
|
|
// Use SetMode(gin.ReleaseMode) to disable debug mode.
|
|
@@ -68,7 +68,7 @@ func getMinVer(v string) (uint64, error) {
|
|
|
|
|
|
|
|
func debugPrintWARNINGDefault() {
|
|
func debugPrintWARNINGDefault() {
|
|
|
if v, e := getMinVer(runtime.Version()); e == nil && v <= ginSupportMinGoVer {
|
|
if v, e := getMinVer(runtime.Version()); e == nil && v <= ginSupportMinGoVer {
|
|
|
- debugPrint(`[WARNING] Now Gin requires Go 1.8 or later and Go 1.9 will be required soon.
|
|
|
|
|
|
|
+ debugPrint(`[WARNING] Now Gin requires Go 1.10 or later and Go 1.11 will be required soon.
|
|
|
|
|
|
|
|
`)
|
|
`)
|
|
|
}
|
|
}
|