commit 115acaf41a02950fe2bd5a89b72f4231451e07bb
Author: Wim <wim@42.be>
Date: Thu Jun 15 01:44:46 2017 +0000
diff --git a/README.md b/README.md
index fcca7dc..c03cd2f 100644
--- a/README.md
+++ b/README.md
@@ -287 +287 @@ Simple bridge between Mattermost, IRC, XMPP, Gitter, Slack, Discord, Telegram, R
# Requirements
Accounts to one of the supported bridges
-* [Mattermost](https://github.com/mattermost/platform/) 3.5.x - 3.9.x
+* [Mattermost](https://github.com/mattermost/platform/) 3.5.x - 3.10.x
* [IRC](http://www.mirc.com/servers.html)
* [XMPP](https://jabber.org)
* [Gitter](https://gitter.im)
@@ -427 +427 @@ Accounts to one of the supported bridges
# Installing
## Binaries
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
-* Latest stable release [v0.13.0](https://github.com/42wim/matterbridge/releases/latest)
+* Latest stable release [v0.14.0](https://github.com/42wim/matterbridge/releases/latest)
## Building
Go 1.6+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH)
diff --git a/changelog.md b/changelog.md
index 2598eb8..484efad 100644
--- a/changelog.md
+++ b/changelog.md
@@ -13 +121 @@
+# v0.14.0
+## New features
+* api: add token authentication
+* mattermost: add support for mattermost 3.10.0
+
+## Changes
+* api: gateway name is added in JSON messages
+* api: lowercase JSON keys
+* api: channel name isn't needed in config #195
+
+## Bugfix
+* discord: Add hashtag to channelname (when translating from id) (discord)
+* mattermost: Fix a panic. #186
+* mattermost: use teamid cache if possible. Fixes a panic
+* api: post valid json. #185
+* api: allow reuse of api in different gateways. #189
+* general: Fix utf-8 issues for {NOPINGNICK}. #193
+
# v0.13.0
## New features
* irc: Limit message length. ```MessageLength=400```
diff --git a/matterbridge.go b/matterbridge.go
index 6788f40..6cce278 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -127 +127 @@ import (
)
var (
- version = "0.13.1-dev"
+ version = "0.14.0"
githash string
)