diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ce101fff..431c00c6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ If applicable, add screenshots to help explain your problem. - OS: [e.g. ubuntu, windows] **iris.Version** -- e.g. v12.2.0-alpha7 or master +- e.g. v12.2.0-alpha8 or master Please make sure the bug is reproducible over the `master` branch: diff --git a/README.md b/README.md index 3c53c5eb..82ab074e 100644 --- a/README.md +++ b/README.md @@ -281,7 +281,7 @@ Venkatt Guhesan" title="vguhesan" with="75" style="width:75px;max-width:75px;hei $ mkdir myapp $ cd myapp $ go mod init myapp -$ go get github.com/kataras/iris/v12@master # or @v12.2.0-alpha7 +$ go get github.com/kataras/iris/v12@master # or @v12.2.0-alpha8 ```
Install on existing project diff --git a/README_FA.md b/README_FA.md index f93deb0d..2ca1031c 100644 --- a/README_FA.md +++ b/README_FA.md @@ -242,7 +242,7 @@ Venkatt Guhesan" title="vguhesan" with="75" style="width:75px;max-width:75px;hei $ mkdir myapp $ cd myapp $ go mod init myapp -$ go get github.com/kataras/iris/v12@master # or @v12.2.0-alpha7 +$ go get github.com/kataras/iris/v12@master # or @v12.2.0-alpha8 ```
diff --git a/context/context.go b/context/context.go index 045f4bf6..88f54375 100644 --- a/context/context.go +++ b/context/context.go @@ -593,6 +593,9 @@ func (ctx *Context) Proceed(h Handler) bool { return ok } +// ProceedAndReportIfStopped same as "Proceed" method +// but the first output parameter reports whether the "h" +// called "StopExecution" manually. func (ctx *Context) ProceedAndReportIfStopped(h Handler) (bool, bool) { ctx.proceeded = internalPauseExecutionIndex diff --git a/doc.go b/doc.go index b755c736..314007e3 100644 --- a/doc.go +++ b/doc.go @@ -42,9 +42,9 @@ Current Version Installation -The only requirement is the Go Programming Language, at least version 1.13. +The only requirement is the Go Programming Language, at least version 1.17. - $ go get github.com/kataras/iris/v12@latest + $ go get github.com/kataras/iris/v12@master Wiki: diff --git a/iris.go b/iris.go index 77d01e7d..7480d74a 100644 --- a/iris.go +++ b/iris.go @@ -37,7 +37,7 @@ import ( ) // Version is the current version of the Iris Web Framework. -const Version = "12.2.0-alpha" +const Version = "12.2.0-alpha8" // Byte unit helpers. const (