summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-11-12 22:33:58 +0100
committerWim <wim@42.be>2016-11-12 22:33:58 +0100
commit0b4ac6143514d2f3fbd8c55eec5d9e8bc6dd62bf (patch)
tree5251579a86d63130c8f125a9bb91927366e1436b
parent1d5cd1d7c479c382c9cddaf02f1e59bf55971f12 (diff)
downloadmatterbridge-msglm-0b4ac6143514d2f3fbd8c55eec5d9e8bc6dd62bf.tar.gz
matterbridge-msglm-0b4ac6143514d2f3fbd8c55eec5d9e8bc6dd62bf.tar.bz2
matterbridge-msglm-0b4ac6143514d2f3fbd8c55eec5d9e8bc6dd62bf.zip
Update documentation
-rw-r--r--README.md14
-rw-r--r--changelog.md7
-rw-r--r--matterbridge.go2
3 files changed, 13 insertions, 10 deletions
diff --git a/README.md b/README.md
index 8d147902..80b6a679 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,4 @@
# matterbridge
-
-:warning: Look at [README-0.6.md] (https://github.com/42wim/matterbridge/blob/master/README-0.6.md) for the documentation of the current stable.
-The information below is about the develop version.
-
Simple bridge between mattermost, IRC, XMPP, Gitter, Slack and Discord
* Relays public channel messages between multiple mattermost, IRC, XMPP, Gitter, Slack and Discord. Pick and mix.
@@ -15,7 +11,7 @@ Look at [matterbridge.toml.sample] (https://github.com/42wim/matterbridge/blob/m
Look at [matterbridge.toml.simple] (https://github.com/42wim/matterbridge/blob/master/matterbridge.toml.simple) for a simple example.
## Changelog
-Since v0.7.0-dev the configuration has changed. More details in [changelog.md] (https://github.com/42wim/matterbridge/blob/master/changelog.md)
+Since v0.7.0 the configuration has changed. More details in [changelog.md] (https://github.com/42wim/matterbridge/blob/master/changelog.md)
## Requirements
Accounts to one of the supported bridges
@@ -34,12 +30,14 @@ docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge
## binaries
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
-* 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)
+* For use with mattermost 3.5.0+ [v0.8.0](https://github.com/42wim/matterircd/releases/tag/v0.8.0)
+* For use with mattermost 3.3.0 - 3.4.0 [v0.7.0](https://github.com/42wim/matterircd/releases/tag/v0.7.0)
+* For use with mattermost 3.0.0 - 3.2.0 [v0.5.0](https://github.com/42wim/matterircd/releases/tag/v0.5.0) (not maintained anymore)
## Compatibility
### Mattermost
-* 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.8.0 works with mattermost 3.5.0+ [3.5.0 release](https://github.com/mattermost/platform/releases/tag/v3.5.0)
+* Matterbridge v0.7.0 works with mattermost 3.3.0 - 3.4.0 [3.4.0 release](https://github.com/mattermost/platform/releases/tag/v3.4.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 0f8c6424..42bca6d1 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,4 +1,9 @@
-# v0.7-dev
+# v0.8
+Release because of breaking mattermost API changes
+## New features
+* Supports mattermost v3.5.0
+
+# v0.7
## Breaking config changes from 0.6 to 0.7
Matterbridge now uses TOML configuration (https://github.com/toml-lang/toml)
See matterbridge.toml.sample for an example
diff --git a/matterbridge.go b/matterbridge.go
index 28a76fa1..774a1933 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -9,7 +9,7 @@ import (
log "github.com/Sirupsen/logrus"
)
-var version = "0.7.0-dev"
+var version = "0.9.0-dev"
func init() {
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})