mirror of
https://github.com/kataras/iris.git
synced 2025-03-15 04:06:25 +01:00
push version 8.1.3 👍
Former-commit-id: 88d9e73e291dd871f995f6362ef73032fc0c92d2
This commit is contained in:
parent
9143ccec6e
commit
4533be64b4
|
@ -18,6 +18,12 @@ 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 -u github.com/kataras/iris`.
|
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
|
||||||
|
|
||||||
|
# Tu, 01 August 2017 | v8.1.3
|
||||||
|
|
||||||
|
- Add `Option` function to the `html view engine`: https://github.com/kataras/iris/issues/694
|
||||||
|
- Fix sessions backend databases restore expiration: https://github.com/kataras/iris/issues/692 by @corebreaker
|
||||||
|
- Add `PartyFunc`, same as `Party` but receives a function with the sub router as its argument instead
|
||||||
|
|
||||||
# Mo, 31 July 2017 | v8.1.2
|
# Mo, 31 July 2017 | v8.1.2
|
||||||
|
|
||||||
Add a `ConfigureHost` function as an alternative way to customize the hosts via `host.Configurator`.
|
Add a `ConfigureHost` function as an alternative way to customize the hosts via `host.Configurator`.
|
||||||
|
|
|
@ -20,7 +20,7 @@ Iris is a fast, simple and efficient micro web framework for Go. It provides a b
|
||||||
### 📑 Table of contents
|
### 📑 Table of contents
|
||||||
|
|
||||||
* [Installation](#-installation)
|
* [Installation](#-installation)
|
||||||
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#mo-31-july-2017--v812)
|
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#tu-01-august-2017--v813)
|
||||||
* [Learn](#-learn)
|
* [Learn](#-learn)
|
||||||
* [HTTP Listening](_examples/#http-listening)
|
* [HTTP Listening](_examples/#http-listening)
|
||||||
* [Configuration](_examples/#configuration)
|
* [Configuration](_examples/#configuration)
|
||||||
|
@ -345,7 +345,7 @@ Thank You for your trust!
|
||||||
|
|
||||||
### 📌 Version
|
### 📌 Version
|
||||||
|
|
||||||
Current: **8.1.2**
|
Current: **8.1.3**
|
||||||
|
|
||||||
Each new release is pushed to the master. It stays there until the next version. When a next version is released then the previous version goes to its own branch with `gopkg.in` as its import path (and its own vendor folder), in order to keep it working "for-ever".
|
Each new release is pushed to the master. It stays there until the next version. When a next version is released then the previous version goes to its own branch with `gopkg.in` as its import path (and its own vendor folder), in order to keep it working "for-ever".
|
||||||
|
|
||||||
|
|
4
doc.go
4
doc.go
|
@ -35,11 +35,11 @@ Source code and other details for the project are available at GitHub:
|
||||||
|
|
||||||
Current Version
|
Current Version
|
||||||
|
|
||||||
8.1.2
|
8.1.3
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
|
||||||
The only requirement is the Go Programming Language, at least version 1.8.x
|
The only requirement is the Go Programming Language, at least version 1.8
|
||||||
|
|
||||||
$ go get -u github.com/kataras/iris
|
$ go get -u github.com/kataras/iris
|
||||||
|
|
||||||
|
|
2
iris.go
2
iris.go
|
@ -33,7 +33,7 @@ import (
|
||||||
const (
|
const (
|
||||||
|
|
||||||
// Version is the current version number of the Iris Web Framework.
|
// Version is the current version number of the Iris Web Framework.
|
||||||
Version = "8.1.2"
|
Version = "8.1.3"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HTTP status codes as registered with IANA.
|
// HTTP status codes as registered with IANA.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user