From cfb6beec4374c3a295e6cf98a8cf30508839429c Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Tue, 20 Sep 2016 12:24:44 +0300 Subject: [PATCH] Add the HISTORY.md entry for the new release, 4.3.0 --- HISTORY.md | 6 +++++- README.md | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 4f790763..d4331f47 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,9 +2,13 @@ **How to upgrade**: remove your `$GOPATH/src/github.com/kataras/iris` folder, open your command-line and execute this command: `go get -u github.com/kataras/iris`. +## 4.2.9 -> 4.3.0 + +- Align with the latest version of [go-websocket](https://github.com/kataras/go-websocket), remove vendoring for compression on [go-fs](https://github.com/kataras/go-fs) which produced errors on sqllite and gorm(mysql and mongo worked fine before too) as reported [here](https://github.com/kataras/go-fs/issues/1). + ## 4.2.7 -> 4.2.8 & 4.2.9 --**External FIX**: [template syntax error causes a "template doesn't exist"](https://github.com/kataras/iris/issues/415) +- **External FIX**: [template syntax error causes a "template doesn't exist"](https://github.com/kataras/iris/issues/415) ## 4.2.6 -> 4.2.7 diff --git a/README.md b/README.md index 736fa05a..e3f75b03 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ func main() { // handle "/" - HTTP METHOD: "GET" iris.Get("/", func(ctx *iris.Context) { - ctx.Render("index.html") + ctx.Render("index.html", nil) }) iris.Get("/login", func(ctx *iris.Context) {