Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 38c9a9240042518dde2afad907d1229a37e7b68c Author: Wim <wim@42.be> Date: Sat Mar 18 16:59:38 2017 +0000 Release v0.10.0 diff --git a/README.md b/README.md index 5b5c359..2f6198b 100644 --- a/README.md +++ b/README.md @@ -417 +417 @@ Accounts to one of the supported bridges  # Installing  ## Binaries  Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) -* Latest release [v0.9.3](https://github.com/42wim/matterircd/releases/tag/v0.9.3) +* Latest release [v0.10.0](https://github.com/42wim/matterbridge/releases/tag/v0.10.0)    ## 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 d3c4609..e272ed4 100644 --- a/changelog.md +++ b/changelog.md @@ -19 +113 @@ -# v0.10.0-dev +# v0.10.0  ## New features  * matrix: New protocol support added (https://matrix.org) +* mattermost: works with mattermost release v3.7.0 +* discord: Replace role ids in mentions to role names (discord). Closes #133    ## Bugfix  * mattermost: Add ReadTimeout to close lingering connections (mattermost). See #125 +* gitter: Join rooms not already joined by the bot (gitter). See #135 +* general: Fail when bridge is unable to join a channel (general)    ## Changes  * telegram: Do not use HTML parsemode by default. Set ```MessageFormat="HTML"``` to use it. Closes #126 diff --git a/matterbridge.go b/matterbridge.go index 311a5ce..ef5286a 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -107 +107 @@ import (  )    var ( - version = "0.10.0-dev" + version = "0.10.0"   githash string  )