From 86865c6da5282c0c80d9774ebdbf0560bafffe0c Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 7 May 2018 22:07:17 +0200 Subject: [PATCH] Release v1.10.0 --- README.md | 2 +- changelog.md | 19 +++++++++++++++++++ matterbridge.go | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42189ed8..5d9ff952 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ See https://github.com/42wim/matterbridge/wiki # Installing ## Binaries -* Latest stable release [v1.9.1](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.10.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 f45efa9b..10755259 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,22 @@ +# v1.10.0 +## New features +* general: Add support for reloading all settings automatically after changing config except connection and gateway configuration. Closes #373 +* zulip: New protocol support added (https://zulipchat.com) + +## Enhancements +* general: Handle file comment better +* steam: Handle file uploads to mediaserver (steam) +* slack: Properly set Slack user who initiated slash command (#394) + +## Bugfix +* general: Use only alphanumeric for file uploads to mediaserver. Closes #416 +* general: Fix crash on invalid filenames +* general: Fix regression in ReplaceMessages and ReplaceNicks. Closes #407 +* telegram: Fix possible nil when using channels (telegram). #410 +* telegram: Fix panic (telegram). Closes #410 +* telegram: Handle channel posts correctly +* mattermost: Update GetFileLinks to API_V4 + # v1.9.1 ## New features * telegram: Add QuoteDisable option (telegram). Closes #399. See QuoteDisable in matterbridge.toml.sample diff --git a/matterbridge.go b/matterbridge.go index 692df1f7..88814256 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -13,7 +13,7 @@ import ( ) var ( - version = "1.9.2-dev" + version = "1.10.0" githash string )