publish version v12.2.0-alpha8

This commit is contained in:
Gerasimos (Makis) Maropoulos 2022-02-26 21:27:04 +02:00
parent 20fa672097
commit b4b1f73df6
No known key found for this signature in database
GPG Key ID: 66FCC29BD385FCA6
6 changed files with 9 additions and 6 deletions

View File

@ -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:

View File

@ -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
```
<details><summary>Install on existing project</summary>

View File

@ -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
```
<div dir="rtl">

View File

@ -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

4
doc.go
View File

@ -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:

View File

@ -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 (