summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--changelog.md5
-rw-r--r--matterbridge.go3
3 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 409628af..cb642e0d 100644
--- a/README.md
+++ b/README.md
@@ -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
)