diff options
author | Wim <wim@42.be> | 2019-07-15 23:09:46 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2019-07-15 23:09:46 +0200 |
commit | 87788f354f796c8ed93d2ef9318002b056a74577 (patch) | |
tree | 662caa0ce69d496e01e525b7f21b21f1c366325c | |
parent | 7d2e440c8311199dddb3f1e7c73c223325e51dff (diff) | |
download | matterbridge-msglm-87788f354f796c8ed93d2ef9318002b056a74577.tar.gz matterbridge-msglm-87788f354f796c8ed93d2ef9318002b056a74577.tar.bz2 matterbridge-msglm-87788f354f796c8ed93d2ef9318002b056a74577.zip |
Release v1.15.1v1.15.1
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.md | 4 | ||||
-rw-r--r-- | matterbridge.go | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -129,7 +129,7 @@ See https://github.com/42wim/matterbridge/wiki ## Installing / upgrading ### Binaries -* Latest stable release [v1.15.0](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.15.1](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 51a3cb43..e54a8095 100644 --- a/changelog.md +++ b/changelog.md @@ -1,10 +1,14 @@ # dev + +# v1.15.1 ## Enhancements * discord: Support bulk deletions #851 +* discord: Support channels in categories #863 (use category/channel. See matterbridge.toml.sample for more info) * mattermost: Add an option to skip the Mattermost server version check #849 ## Bugfix * xmpp: fix segfault when disconnected/reconnected #856 +* telegram: fix panic in handleEntities #858 # v1.15.0 ## New features diff --git a/matterbridge.go b/matterbridge.go index 401e7e4c..2c265091 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -15,7 +15,7 @@ import ( ) var ( - version = "1.15.1-dev" + version = "1.15.1" githash string flagConfig = flag.String("conf", "matterbridge.toml", "config file") |