summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--changelog.md25
-rw-r--r--matterbridge.go2
3 files changed, 27 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9b570041..438b9153 100644
--- a/README.md
+++ b/README.md
@@ -153,7 +153,7 @@ See <https://github.com/42wim/matterbridge/wiki>
### Binaries
-- Latest stable release [v1.19.0](https://github.com/42wim/matterbridge/releases/latest)
+- Latest stable release [v1.20.0](https://github.com/42wim/matterbridge/releases/latest)
- Development releases (follows master) can be downloaded [here](https://github.com/42wim/matterbridge/actions) selecting the latest green build and then artifacts.
To install or upgrade just download the latest [binary](https://github.com/42wim/matterbridge/releases/latest) and follow the instructions on the [howto](https://github.com/42wim/matterbridge/wiki/How-to-create-your-config) for a step by step walkthrough for creating your configuration.
diff --git a/changelog.md b/changelog.md
index 2ac59469..7fafe520 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,28 @@
+# v1.20.0
+
+## Breaking
+
+- matrix: Send the display name instead of the user name (matrix) (#1282)
+ Matrix now sends the displayname if set instead of the username. If you want to keep the username, add `UseUsername=true` to your matrix config. <https://github.com/42wim/matterbridge/wiki/Settings#useusername-1>
+- discord: Disable webhook editing (discord) (#1296)
+ Because of issues with ratelimiting of webhook editing, this feature is now disabled. If you have multiple discord channels you bridge, you'll need to add a `webhookURL` to the `[gateway.inout.options]`. See <https://github.com/42wim/matterbridge/blob/master/matterbridge.toml.sample#L1864-L1870> for an example.
+
+## New features
+
+- general: Allow tengo to drop messages using msgDrop (#1272)
+- general: Update libraries (whatsapp,markdown,mattermost,ssh-chat)
+- irc: Add PingDelay option (irc) (#1269)
+- matrix: Allow message edits on matrix (#1286)
+- xmpp: add NoTLS option to allow plaintext XMPP connections (#1288)
+
+## Enhancements
+
+- discord: Edit messages via webhook (1287)
+- general: Add extra debug to log time spent sending a message per bridge (#1299)
+
+This release couldn't exist without the following contributors:
+@nightmared, @zhoreeq
+
# v1.19.0
## New features
diff --git a/matterbridge.go b/matterbridge.go
index b76dabb2..84eeeb80 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -16,7 +16,7 @@ import (
)
var (
- version = "1.19.1-dev"
+ version = "1.20.0"
githash string
flagConfig = flag.String("conf", "matterbridge.toml", "config file")