summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-07-18 23:48:00 +0200
committerWim <wim@42.be>2017-07-18 23:48:00 +0200
commit1e2f27c061b8a8f8215497bc6c564ab2c2402e29 (patch)
treef11386f9d40f4f7a47a2e4d60608b07e081bba6f
parent0302e4da82cfdd4b84713462eaee2637ab3ebdc9 (diff)
downloadmatterbridge-msglm-1e2f27c061b8a8f8215497bc6c564ab2c2402e29.tar.gz
matterbridge-msglm-1e2f27c061b8a8f8215497bc6c564ab2c2402e29.tar.bz2
matterbridge-msglm-1e2f27c061b8a8f8215497bc6c564ab2c2402e29.zip
Release v0.16.2v0.16.2
-rw-r--r--README.md4
-rw-r--r--changelog.md9
-rw-r--r--matterbridge.go2
3 files changed, 12 insertions, 3 deletions
diff --git a/README.md b/README.md
index df4fb625..cc9c6484 100644
--- a/README.md
+++ b/README.md
@@ -49,11 +49,11 @@ Accounts to one of the supported bridges
# Installing
## Binaries
-* Latest stable release [v0.16.1](https://github.com/42wim/matterbridge/releases/tag/v0.16.1)
+* Latest stable release [v0.16.2](https://github.com/42wim/matterbridge/releases/latest)
* Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/)
## 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)
+Go 1.7+ 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)
```
cd $GOPATH
diff --git a/changelog.md b/changelog.md
index 95e12e51..22496730 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,12 @@
+# v0.16.2
+## New features
+* general: binary builds against latest commit are now available on https://bintray.com/42wim/nightly/Matterbridge/_latestVersion
+
+## Bugfix
+* slack: fix loop introduced by relaying message of other bots #219
+* slack: Suppress parent message when child message is received #218
+* mattermost: fix regression when using webhookurl and webhookbindaddress #221
+
# v0.16.1
## New features
* slack: also relay messages of other bots #213
diff --git a/matterbridge.go b/matterbridge.go
index 036534e1..4e194311 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -12,7 +12,7 @@ import (
)
var (
- version = "0.16.2-dev"
+ version = "0.16.2"
githash string
)