From 2bb21262d4c90f4562e4039db0d1693200a643c0 Mon Sep 17 00:00:00 2001 From: Wim Date: Tue, 20 Oct 2020 23:34:41 +0200 Subject: [PATCH] Release v1.19.0 (#1268) --- README.md | 3 ++- changelog.md | 19 +++++++++++++++++++ matterbridge.go | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c38e2058..fc2b3910 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ See ### Binaries -- Latest stable release [v1.18.3](https://github.com/42wim/matterbridge/releases/latest) +- Latest stable release [v1.19.0](https://github.com/42wim/matterbridge/releases/latest) - Development releases (follows master) can be downloaded [here](https://github.com/42wim/matterbridge/actions) selecting the latest green build and then artifacts. To install or upgrade just download the latest [binary](https://github.com/42wim/matterbridge/releases/latest) and follow the instructions on the [howto](https://github.com/42wim/matterbridge/wiki/How-to-create-your-config) for a step by step walkthrough for creating your configuration. @@ -331,6 +331,7 @@ Matterbridge wouldn't exist without these libraries: - matrix - - mattermost - - msgraph.go - +- mumble - - nctalk - - slack - - sshchat - diff --git a/changelog.md b/changelog.md index 8b4ba2f4..2ac59469 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,22 @@ +# v1.19.0 + +## New features + +- mumble: new protocol added: Add Mumble support (#1245) +- nctalk: Add support for downloading files (nctalk) (#1249) +- nctalk: Append a suffix if user is a guest user (nctalk) (#1250) + +## Enhancements + +- irc: Add even more debug for irc (#1266) +- matrix: Add username formatting for all events (matrix) (#1233) +- matrix: Permit uploading files of other mimetypes (#1237) +- whatsapp: Use vendored whatsapp version (#1258) +- whatsapp: Add username for images from WhatsApp (#1232) + +This release couldn't exist without the following contributors: +@Dellle, @42wim, @gary-kim, @s3lph, @BenWiederhake + # v1.18.3 ## Enhancements diff --git a/matterbridge.go b/matterbridge.go index 0d8656d4..67055b33 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -16,7 +16,7 @@ import ( ) var ( - version = "1.19.0-dev" + version = "1.19.0" githash string flagConfig = flag.String("conf", "matterbridge.toml", "config file")