5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00

Release v0.16.1

This commit is contained in:
Wim 2017-07-15 16:59:57 +02:00
parent 4aa646f6b0
commit e99532fb89
3 changed files with 10 additions and 2 deletions

View File

@ -48,7 +48,7 @@ Accounts to one of the supported bridges
# Installing # Installing
## Binaries ## Binaries
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
* Latest stable release [v0.16.0](https://github.com/42wim/matterbridge/releases/tag/v0.16.0) * Latest stable release [v0.16.1](https://github.com/42wim/matterbridge/releases/tag/v0.16.1)
## Building ## 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.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)

View File

@ -1,3 +1,11 @@
# v0.16.1
## New features
* slack: also relay messages of other bots #213
* mattermost: show also links if public links have not been enabled.
## Bugfix
* mattermost, slack: fix connecting logic #216
# v0.16.0 # v0.16.0
## Breaking Changes ## Breaking Changes
* URL,UseAPI,BindAddress is deprecated. Your config has to be updated. * URL,UseAPI,BindAddress is deprecated. Your config has to be updated.

View File

@ -12,7 +12,7 @@ import (
) )
var ( var (
version = "0.16.1-dev" version = "0.16.1"
githash string githash string
) )