diff --git a/README.md b/README.md index 65913a72..fc77540e 100644 --- a/README.md +++ b/README.md @@ -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")