summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2019-06-14 01:36:55 +0200
committerWim <wim@42.be>2019-06-14 01:36:55 +0200
commitf06e9b5605ee0bc75314b76059b8f5edd1d73974 (patch)
treec690c581f5924993ddea2ae30390f7b2a5e7f5d3
parent7a3bb0e55cd7c11807d23024a66faec40d39e20a (diff)
downloadmatterbridge-msglm-f06e9b5605ee0bc75314b76059b8f5edd1d73974.tar.gz
matterbridge-msglm-f06e9b5605ee0bc75314b76059b8f5edd1d73974.tar.bz2
matterbridge-msglm-f06e9b5605ee0bc75314b76059b8f5edd1d73974.zip
Release v1.15.0v1.15.0
-rw-r--r--README.md2
-rw-r--r--changelog.md28
-rw-r--r--matterbridge.go2
3 files changed, 30 insertions, 2 deletions
diff --git a/README.md b/README.md
index bce9f807..a824fc2c 100644
--- a/README.md
+++ b/README.md
@@ -129,7 +129,7 @@ See https://github.com/42wim/matterbridge/wiki
## Installing
### Binaries
-* Latest stable release [v1.14.4](https://github.com/42wim/matterbridge/releases/latest)
+* Latest stable release [v1.15.0](https://github.com/42wim/matterbridge/releases/latest)
* Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/)
### Packages
diff --git a/changelog.md b/changelog.md
index 1c27beed..4673eba3 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,31 @@
+# v1.15.0
+## New features
+* Add scripting (tengo) support for every outgoing message (#806)
+ See https://github.com/42wim/matterbridge/wiki/Settings#tengo and
+ https://github.com/42wim/matterbridge/wiki/Settings#outmessage for more information
+* Add tengo support to RemoteNickFormat (#793)
+ See https://github.com/42wim/matterbridge/wiki/Settings#remotenickformat-2
+* Deprecated `Message` under `[tengo]` to `InMessage`
+
+## Enhancements
+* general: Forward only user-typing messages if supported by protocol (#832)
+* general: updated wiki with all possible settings: https://github.com/42wim/matterbridge/wiki/Settings
+* tengo: Add msg event to tengo
+* xmpp: Verify TLS against JID domain, not the host. (xmpp) (#834)
+* xmpp: Allow messages with timestamp (xmpp). Fixes #835 (#847)
+* irc: Add verbose IRC joins/parts (ident@host) (#805)
+ See https://github.com/42wim/matterbridge/wiki/Settings#verbosejoinpart
+* rocketchat: Add useraction support (rocketchat). Closes #772 (#794)
+
+## Bugfix
+* slack: Fix regression in autojoining with legacy tokens (slack). Fixes #651 (#848)
+* xmpp: Revert xmpp to orig behaviour. Closes #844
+* whatsapp: Update github.com/Rhymen/go-whatsapp vendor. Fixes #843
+* mattermost: Update channels of all teams (mattermost)
+
+This release couldn't exist without the following contributors:
+@42wim, @Helcaraxan, @chotaire, @qaisjp, @dajohi, @kousu
+
# v1.14.4
## Bugfix
diff --git a/matterbridge.go b/matterbridge.go
index f4ec96ad..8badefdf 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -15,7 +15,7 @@ import (
)
var (
- version = "1.15.0-dev"
+ version = "1.15.0"
githash string
flagConfig = flag.String("conf", "matterbridge.toml", "config file")