1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 09:57:01 +00:00

Update to 8.2.2 | Google reCAPTCHA. Read HISTORY.md

Former-commit-id: dc8ee74fa33b2fbc41659c9097955afb152d5a6f
This commit is contained in:
kataras
2017-08-10 15:21:42 +03:00
parent be8295eb50
commit 4da5cd47f1
9 changed files with 218 additions and 73 deletions

View File

@@ -32,7 +32,7 @@ import (
const (
// Version is the current version number of the Iris Web Framework.
Version = "8.2.1"
Version = "8.2.2"
)
// HTTP status codes as registered with IANA.
@@ -648,7 +648,7 @@ func (app *Application) Run(serve Runner, withOrWithout ...Configurator) error {
app.Configure(withOrWithout...)
app.logger.Debugf("Application: running using %d host(s)", len(app.Hosts)+1)
if !app.config.DisableVersionCheck && app.logger.Printer.IsTerminal {
if !app.config.DisableVersionChecker && app.logger.Printer.IsTerminal {
go CheckVersion()
}