summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-06-19 20:47:41 +0200
committerWim <wim@42.be>2017-06-19 20:47:41 +0200
commit822605c15724e6eaf6a741a280676ac9a4a20608 (patch)
tree8e2184f12bda5956477081ccad04fe197c9580cf
parente49266ae4360c2d75fd004cdec38528cc3127ffe (diff)
downloadmatterbridge-msglm-0.15.0.tar.gz
matterbridge-msglm-0.15.0.tar.bz2
matterbridge-msglm-0.15.0.zip
Release v0.15.0v0.15.0
-rw-r--r--README.md2
-rw-r--r--changelog.md17
-rw-r--r--matterbridge.go2
3 files changed, 19 insertions, 2 deletions
diff --git a/README.md b/README.md
index c03cd2ff..f3b977a9 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ Accounts to one of the supported bridges
# Installing
## Binaries
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
-* Latest stable release [v0.14.0](https://github.com/42wim/matterbridge/releases/latest)
+* Latest stable release [v0.15.0](https://github.com/42wim/matterbridge/releases/latest)
## Building
Go 1.6+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH)
diff --git a/changelog.md b/changelog.md
index 484efad2..e9e1fb2c 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,20 @@
+# v0.15.0
+## New features
+* general: add option IgnoreMessages for all protocols (see mattebridge.toml.sample)
+ Messages matching these regexp will be ignored and not sent to other bridges
+ e.g. IgnoreMessages="^~~ badword"
+* telegram: add support for sticker/video/photo/document #184
+
+## Changes
+* api: add userid to each message #200
+
+## Bugfix
+* discord: fix crash in memberupdate #198
+* mattermost: Fix incorrect behaviour of EditDisable (mattermost). Fixes #197
+* irc: Do not relay join/part of ourselves (irc). Closes #190
+* irc: make reconnections more robust. #153
+* gitter: update library, fixes possible crash
+
# v0.14.0
## New features
* api: add token authentication
diff --git a/matterbridge.go b/matterbridge.go
index 3a762e28..0e326462 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -12,7 +12,7 @@ import (
)
var (
- version = "0.14.1-dev"
+ version = "0.15.0"
githash string
)