diff --git a/HISTORY.md b/HISTORY.md index 78ab79df..1889e750 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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`. +# Sa, 12 August 2017 | v8.2.4 + +No API Changes. + +Fix https://github.com/kataras/iris/issues/717, users are welcomed to follow the thread for any questions or reports about Gzip and Static Files Handlers **only**. + # Th, 10 August 2017 | v8.2.3 No API Changes. diff --git a/README.md b/README.md index bf64f847..fc4dbc36 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Iris is a fast, simple and efficient micro web framework for Go. It provides a b ### 📑 Table of contents * [Installation](#-installation) -* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#th-10-august-2017--v822) +* [Latest changes](https://github.com/kataras/iris/blob/master/HISTORY.md#th-12-august-2017--v824) * [Learn](#-learn) * [HTTP Listening](_examples/#http-listening) * [Configuration](_examples/#configuration) diff --git a/VERSION b/VERSION index 9eed9607..77dd5e93 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.2.3:https://github.com/kataras/iris/blob/master/HISTORY.md#th-10-august-2017--v823 \ No newline at end of file +8.2.4:https://github.com/kataras/iris/blob/master/HISTORY.md#th-12-august-2017--v824 \ No newline at end of file diff --git a/doc.go b/doc.go index c3d2e057..29db2f53 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.2.3 +8.2.4 Installation diff --git a/iris.go b/iris.go index 80101857..e076ef6e 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.2.3" + Version = "8.2.4" ) // HTTP status codes as registered with IANA.