From 7811c330db1df72b153f93e7ac0f00def874ddd9 Mon Sep 17 00:00:00 2001 From: Wim Date: Wed, 31 May 2017 23:32:38 +0200 Subject: [PATCH] Release v0.13.0 --- README.md | 2 +- changelog.md | 13 +++++++++++++ matterbridge.go | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7fa9c9f7..fcca7dc0e 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Accounts to one of the supported bridges # Installing ## Binaries Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) -* Latest stable release [v0.12.1](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v0.13.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 d51f073c5..2598eb8c9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,16 @@ +# v0.13.0 +## New features +* irc: Limit message length. ```MessageLength=400``` + Maximum length of message sent to irc server. If it exceeds will be add to the message. +* irc: Add NOPINGNICK option. + The string "{NOPINGNICK}" (case sensitive) will be replaced by the actual nick / username, but with a ZWSP inside the nick, so the irc user with the same nick won't get pinged. + See https://github.com/42wim/matterbridge/issues/175 for more information + +## Bugfix +* slack: Fix sending to different channels on same account (slack). Closes #177 +* telegram: Fix incorrect usernames being sent. Closes #181 + + # v0.12.1 ## New features * telegram: Add UseFirstName option (telegram). Closes #144 diff --git a/matterbridge.go b/matterbridge.go index 4b183e853..32460d5a7 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -12,7 +12,7 @@ import ( ) var ( - version = "0.12.2-dev" + version = "0.13.0" githash string )