diff --git a/.travis.yml b/.travis.yml index b8f0b07b..7d15b88e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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) diff --git a/HISTORY.md b/HISTORY.md index 721aa5b4..b1e8a48a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/README.md b/README.md index a0dfa3a3..1636a468 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/VERSION b/VERSION index dc2b077a..ba5962e7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.4.3:https://github.com/kataras/iris/blob/master/HISTORY.md#we-27-september-2017--v843 \ No newline at end of file +8.4.4:https://github.com/kataras/iris/blob/master/HISTORY.md#su-01-october-2017--v844 \ No newline at end of file diff --git a/doc.go b/doc.go index c4b50c24..02532748 100644 --- a/doc.go +++ b/doc.go @@ -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 diff --git a/iris.go b/iris.go index 640ba22f..979859f1 100644 --- a/iris.go +++ b/iris.go @@ -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.