From 08f442dc7b7e8f7f8a65bb4c42c366e9f931d6e7 Mon Sep 17 00:00:00 2001
From: Wim <wim@42.be>
Date: Fri, 20 Apr 2018 00:32:11 +0200
Subject: [PATCH] Release v1.9.1

---
 README.md       |  2 +-
 changelog.md    | 12 ++++++++++++
 matterbridge.go |  2 +-
 3 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index aff7a8d8..da381118 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ See https://github.com/42wim/matterbridge/wiki
 
 # Installing
 ## Binaries
-* Latest stable release [v1.9.0](https://github.com/42wim/matterbridge/releases/latest)
+* Latest stable release [v1.9.1](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 ffc2de6e..f45efa9b 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,15 @@
+# v1.9.1
+## New features
+* telegram: Add QuoteDisable option (telegram). Closes #399. See QuoteDisable in matterbridge.toml.sample
+## Enhancements
+* discord: Send mediaserver link to Discord in Webhook mode (discord) (#405)
+* mattermost: Print list of valid team names when team not found (#390)
+* slack: Strip markdown URLs with blank text (slack) (#392)
+## Bugfix
+* slack/mattermost: Make our callbackid more unique. Fixes issue with running multiple matterbridge on the same channel (slack,mattermost)
+* telegram: fix newlines in multiline messages #399
+* telegram: Revert #378
+
 # v1.9.0 (the refactor release)
 ## New features
 * general: better debug messages
diff --git a/matterbridge.go b/matterbridge.go
index d260d34c..e0fd382b 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -13,7 +13,7 @@ import (
 )
 
 var (
-	version = "1.9.0"
+	version = "1.9.1"
 	githash string
 )