mirror of
https://github.com/kataras/iris.git
synced 2026-06-09 23:23:35 +00:00
publish version v12.2.0-alpha8
This commit is contained in:
@@ -24,7 +24,7 @@ If applicable, add screenshots to help explain your problem.
|
|||||||
- OS: [e.g. ubuntu, windows]
|
- OS: [e.g. ubuntu, windows]
|
||||||
|
|
||||||
**iris.Version**
|
**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:
|
Please make sure the bug is reproducible over the `master` branch:
|
||||||
|
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ Venkatt Guhesan" title="vguhesan" with="75" style="width:75px;max-width:75px;hei
|
|||||||
$ mkdir myapp
|
$ mkdir myapp
|
||||||
$ cd myapp
|
$ cd myapp
|
||||||
$ go mod init 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>
|
<details><summary>Install on existing project</summary>
|
||||||
|
|||||||
+1
-1
@@ -242,7 +242,7 @@ Venkatt Guhesan" title="vguhesan" with="75" style="width:75px;max-width:75px;hei
|
|||||||
$ mkdir myapp
|
$ mkdir myapp
|
||||||
$ cd myapp
|
$ cd myapp
|
||||||
$ go mod init 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">
|
<div dir="rtl">
|
||||||
|
|||||||
@@ -593,6 +593,9 @@ func (ctx *Context) Proceed(h Handler) bool {
|
|||||||
return ok
|
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) {
|
func (ctx *Context) ProceedAndReportIfStopped(h Handler) (bool, bool) {
|
||||||
ctx.proceeded = internalPauseExecutionIndex
|
ctx.proceeded = internalPauseExecutionIndex
|
||||||
|
|
||||||
|
|||||||
@@ -42,9 +42,9 @@ Current Version
|
|||||||
|
|
||||||
Installation
|
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:
|
Wiki:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user