mirror of
https://github.com/kataras/iris.git
synced 2025-12-17 18:07:01 +00:00
publish version v12.2.0-alpha8
This commit is contained in:
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -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:
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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
4
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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user