diff options
author | Wim <wim@42.be> | 2020-04-21 23:53:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-21 23:53:51 +0200 |
commit | 6c442e239d3ec5b5a1f7a9f2cbc116b40c5a4b9d (patch) | |
tree | e24a2e63722cef96027128028f23f8ed84168eff | |
parent | eaf92fca4ddf6bf78d2092618a4dc93b78af7140 (diff) | |
download | matterbridge-msglm-1.17.4.tar.gz matterbridge-msglm-1.17.4.tar.bz2 matterbridge-msglm-1.17.4.zip |
Release v1.17.4 (#1112)v1.17.4
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.md | 9 | ||||
-rw-r--r-- | matterbridge.go | 2 |
3 files changed, 11 insertions, 2 deletions
@@ -151,7 +151,7 @@ See https://github.com/42wim/matterbridge/wiki ### Binaries -- Latest stable release [v1.17.3](https://github.com/42wim/matterbridge/releases/latest) +- Latest stable release [v1.17.4](https://github.com/42wim/matterbridge/releases/latest) - Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/) 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 f1219436..f490d4eb 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,12 @@ +# v1.17.4 + +## Bugfix + +- general: Lowercase account names. Fixes #1108 (#1110) +- msteams: Remove panics and retry polling on failure (msteams). Fixes #1104 (#1105 +- whatsapp: Update Rhymen/go-whatsapp. Fixes #1107 (#1109) (make whatsapp working again) +- discord: Add an ID cache (discord). Fixes #1106 (#1111) (fix delete/edits with webhooks) + # v1.17.3 ## Enhancements diff --git a/matterbridge.go b/matterbridge.go index e96061be..67d75d11 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -15,7 +15,7 @@ import ( ) var ( - version = "1.17.4-dev" + version = "1.17.4" githash string flagConfig = flag.String("conf", "matterbridge.toml", "config file") |