diff options
author | Wim <wim@42.be> | 2017-07-24 16:20:34 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-07-24 16:20:34 +0200 |
commit | 22307b1934175d17b02992de7e66ec50ec9f286f (patch) | |
tree | cff6958536fe3ca383db443b81c6b91402a545b1 | |
parent | bd97357f8d30322dc9c9745c47b9461d862844ba (diff) | |
download | matterbridge-msglm-0.16.3.tar.gz matterbridge-msglm-0.16.3.tar.bz2 matterbridge-msglm-0.16.3.zip |
Release v0.16.3v0.16.3
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.md | 7 | ||||
-rw-r--r-- | matterbridge.go | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -49,7 +49,7 @@ Accounts to one of the supported bridges # Installing ## Binaries -* Latest stable release [v0.16.2](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v0.16.3](https://github.com/42wim/matterbridge/releases/latest) * Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/) ## Building diff --git a/changelog.md b/changelog.md index 22496730..953fd7f0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,10 @@ +# v0.16.3 +## Bugfix +* general: Fix in/out logic. Closes #224 +* general: Fix message modification +* slack: Disable message from other bots when using webhooks (slack) +* mattermost: Return better error messages on mattermost connect + # v0.16.2 ## New features * general: binary builds against latest commit are now available on https://bintray.com/42wim/nightly/Matterbridge/_latestVersion diff --git a/matterbridge.go b/matterbridge.go index 410cbc76..a84fd9b3 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -12,7 +12,7 @@ import ( ) var ( - version = "0.16.3-dev" + version = "0.16.3" githash string ) |