diff options
author | Wim <wim@42.be> | 2016-09-17 15:34:59 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2016-09-17 15:34:59 +0200 |
commit | 6e410b096ef15e976f6a2d28f3412fe9e457f95a (patch) | |
tree | 69b9d8ce77bcc016b4485d3f449c74e3b97d82f2 | |
parent | f9e59943488fa0ace312a10422821f358eba0b3a (diff) | |
download | matterbridge-msglm-6e410b096ef15e976f6a2d28f3412fe9e457f95a.tar.gz matterbridge-msglm-6e410b096ef15e976f6a2d28f3412fe9e457f95a.tar.bz2 matterbridge-msglm-6e410b096ef15e976f6a2d28f3412fe9e457f95a.zip |
Release v0.6.1v0.6.1
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | changelog.md | 2 | ||||
-rw-r--r-- | matterbridge.go | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -9,7 +9,7 @@ Simple bridge between mattermost, IRC, XMPP and Gitter Look at [matterbridge.conf.sample] (https://github.com/42wim/matterbridge/blob/master/matterbridge.conf.sample) for documentation and an example. ## Changelog -Since v0.6.0 support for XMPP, Gitter and Slack is added. More details in [changelog.md] (https://github.com/42wim/matterbridge/blob/master/changelog.md) +Since v0.6.1 support for XMPP, Gitter and Slack is added. More details in [changelog.md] (https://github.com/42wim/matterbridge/blob/master/changelog.md) ## Requirements: Accounts to one of the supported bridges @@ -20,12 +20,12 @@ Accounts to one of the supported bridges ## binaries Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) -* For use with mattermost 3.3.0+ [v0.6.0](https://github.com/42wim/matterircd/releases/tag/v0.6.0) +* For use with mattermost 3.3.0+ [v0.6.1](https://github.com/42wim/matterircd/releases/tag/v0.6.1) * For use with mattermost 3.0.0-3.2.0 [v0.5.0](https://github.com/42wim/matterircd/releases/tag/v0.5.0) ## Compatibility ### Mattermost -* Matterbridge v0.6.0 works with mattermost 3.3.0 and higher [3.3.0 release](https://github.com/mattermost/platform/releases/tag/v3.3.0) +* Matterbridge v0.6.1 works with mattermost 3.3.0 and higher [3.3.0 release](https://github.com/mattermost/platform/releases/tag/v3.3.0) * Matterbridge v0.5.0 works with mattermost 3.0.0 - 3.2.0 [3.2.0 release](https://github.com/mattermost/platform/releases/tag/v3.2.0) diff --git a/changelog.md b/changelog.md index 7bd84453..c8e1d84e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,4 @@ -# v0.6.0 +# v0.6.1 ## New features * Slack support added. See matterbridge.conf.sample for more information ## Bugfix diff --git a/matterbridge.go b/matterbridge.go index 90127539..ebf6ddaf 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -8,7 +8,7 @@ import ( log "github.com/Sirupsen/logrus" ) -var version = "0.6.0" +var version = "0.6.1" func init() { log.SetFormatter(&log.TextFormatter{FullTimestamp: true}) |