diff options
author | Wim <wim@42.be> | 2017-08-05 15:50:21 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-08-05 15:50:21 +0200 |
commit | ad4d461606b5fb9b64377c8ef37110ee0b3c721b (patch) | |
tree | 285475b0f958ffc71a970ac9b35b4744f4b6a648 | |
parent | 67905089ba1609e52984b5bb9c7e0bf27c2cbbb9 (diff) | |
download | matterbridge-msglm-ad4d461606b5fb9b64377c8ef37110ee0b3c721b.tar.gz matterbridge-msglm-ad4d461606b5fb9b64377c8ef37110ee0b3c721b.tar.bz2 matterbridge-msglm-ad4d461606b5fb9b64377c8ef37110ee0b3c721b.zip |
Release v1.0.0v1.0.0
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.md | 5 | ||||
-rw-r--r-- | matterbridge.go | 3 |
3 files changed, 7 insertions, 3 deletions
@@ -53,7 +53,7 @@ See https://github.com/42wim/matterbridge/wiki # Installing ## Binaries -* Latest stable release [v1.0.0-rc1](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.0.0](https://github.com/42wim/matterbridge/releases/latest) * Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/) ## Building diff --git a/changelog.md b/changelog.md index 14c10a7a..ff7089e2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +# v1.0.0 +## New features +* general: Add action support for slack,mattermost,irc,gitter,matrix,xmpp,discord. #199 +* discord: Shows the username instead of the server nickname #234 + # v1.0.0-rc1 ## New features * general: Add action support for slack,mattermost,irc,gitter,matrix,xmpp,discord. #199 diff --git a/matterbridge.go b/matterbridge.go index a1965afb..73ccfc94 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -5,14 +5,13 @@ import ( "fmt" "github.com/42wim/matterbridge/bridge/config" "github.com/42wim/matterbridge/gateway" - //"github.com/42wim/matterbridge/gateway/samechannel" log "github.com/Sirupsen/logrus" "github.com/google/gops/agent" "strings" ) var ( - version = "1.0.0-rc1" + version = "1.0.0" githash string ) |