From 248d88c8498b9a201cd61351751d56840021592b Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 11 Sep 2017 23:41:13 +0200 Subject: [PATCH] Release v1.2.0 --- README.md | 2 +- changelog.md | 14 ++++++++++++++ matterbridge.go | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9385e901..ec06cc6d 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ See https://github.com/42wim/matterbridge/wiki # Installing ## Binaries -* Latest stable release [v1.1.2](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.2.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 882878b4..ebb97192 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,17 @@ +# v1.2.0 +## Breaking changes +* If you're running a discord bridge, update to this release before 16 october otherwise +it will stop working. (see https://discordapp.com/developers/docs/reference) + +## New features +* general: Add delete support. (actually delete the messages on bridges that support it) + (mattermost,discord,gitter,slack,telegram) + +## Bugfix +* Do not break messages on newline (slack). Closes #258 +* Update telegram library +* Update discord library (supports v6 API now). Old API is deprecated on 16 October + # v1.1.2 ## New features * general: also build darwin binaries diff --git a/matterbridge.go b/matterbridge.go index 447e094b..ce2985d3 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -11,7 +11,7 @@ import ( ) var ( - version = "1.2.0-dev" + version = "1.2.0" githash string )