Publish version 11.2.6

Former-commit-id: 3563f65de75fe8923ceca8a4b36c8c1cd5abebe7
This commit is contained in:
Gerasimos (Makis) Maropoulos 2019-08-14 11:04:05 +03:00
parent 732a83ec6c
commit b98bb5a870
5 changed files with 15 additions and 1531 deletions

View File

@ -21,6 +21,17 @@ Developers are not forced to upgrade if they don't really need it. Upgrade whene
**How to upgrade**: Open your command-line and execute this command: `go get github.com/kataras/iris@master`.
# We, 14 August 2019 | v11.2.6
Allow [handle more than one route with the same paths and parameter types but different macro validation functions](https://github.com/kataras/iris/issues/1058#issuecomment-521110639).
```go
app.Get("/{alias:string regexp(^[a-z0-9]{1,10}\\.xml$)}", PanoXML)
app.Get("/{alias:string regexp(^[a-z0-9]{1,10}$)}", Tour)
```
Commit log: https://github.com/kataras/iris/compare/v11.2.5...v11.2.6
# Mo, 12 August 2019 | v11.2.5
- [New Feature: Problem Details for HTTP APIs based](https://github.com/kataras/iris/pull/1336)

View File

@ -1 +1 @@
11.2.5:https://github.com/kataras/iris/releases/tag/v11.2.5
11.2.6:https://github.com/kataras/iris/releases/tag/v11.2.6

File diff suppressed because it is too large Load Diff

2
doc.go
View File

@ -38,7 +38,7 @@ Source code and other details for the project are available at GitHub:
Current Version
11.2.5
11.2.6
Installation

View File

@ -37,7 +37,7 @@ import (
var (
// Version is the current version number of the Iris Web Framework.
Version = "11.2.5"
Version = "11.2.6"
)
// HTTP status codes as registered with IANA.