Former-commit-id: 8c339fc59ade04ad35bc108c817c4d4c30dbca33
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-10-01 06:55:01 +03:00
parent 3e6ec4d441
commit ba63031871
6 changed files with 14 additions and 5 deletions

View File

@ -7,7 +7,7 @@ go:
# we must encourage users to update to the latest go version,
# so examples are running on go 1.9 mode.
- go1.9
- tip
# - tip
go_import_path: github.com/kataras/iris
install:
- go get ./... # for iris-contrib/httpexpect, kataras/golog, boltdb/bolt(sessiondb, optional)

View File

@ -18,6 +18,15 @@ 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`.
# Su, 01 October 2017 | v8.4.4
- Fix https://github.com/kataras/iris/issues/762 reported by @xkylsoft
- Fix https://github.com/kataras/iris/issues/771 reported by @cdren
- Improvements to the memstore's `GetInt`, `GetInt64`, `GetFloat64`, `GetBool` and remove the `golang/net/context`'s interface completion from Context, read the [changes](https://github.com/kataras/iris/commit/caff55748eca4ecb4aa5a770995265b9b3aee544) for more
- Add two examples for folder structuring as requested at https://github.com/kataras/iris/issues/748
* [Example 1](_examples/mvc/login)
* [Example 2](_examples/structuring/mvc)
- Add node.js express [benchmarks](_benchmarks) similar to iris and netcore
# We, 27 September 2017 | v8.4.3

View File

@ -74,7 +74,7 @@ Help this project to continue deliver awesome and unique features with the highe
### 📑 Table of contents
* [Installation](#-installation)
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#we-27-september-2017--v843)
* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#su-01-october-2017--v844)
* [Learn](#-learn)
* [Structuring](_examples/#structuring)
* [HTTP Listening](_examples/#http-listening)

View File

@ -1 +1 @@
8.4.3:https://github.com/kataras/iris/blob/master/HISTORY.md#we-27-september-2017--v843
8.4.4:https://github.com/kataras/iris/blob/master/HISTORY.md#su-01-october-2017--v844

2
doc.go
View File

@ -35,7 +35,7 @@ Source code and other details for the project are available at GitHub:
Current Version
8.4.3
8.4.4
Installation

View File

@ -32,7 +32,7 @@ import (
const (
// Version is the current version number of the Iris Web Framework.
Version = "8.4.3"
Version = "8.4.4"
)
// HTTP status codes as registered with IANA.