diff options
author | Wim <wim@42.be> | 2022-02-07 23:10:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 23:10:56 +0100 |
commit | 65c7ac80b511e99750da34361a281f8e0c897746 (patch) | |
tree | 8d391aceebb049405e736767130f82e008f3bb0e | |
parent | dd3fb32ec7a400bd0c37c26cdcf1f2abcd523f3d (diff) | |
download | matterbridge-msglm-65c7ac80b511e99750da34361a281f8e0c897746.tar.gz matterbridge-msglm-65c7ac80b511e99750da34361a281f8e0c897746.tar.bz2 matterbridge-msglm-65c7ac80b511e99750da34361a281f8e0c897746.zip |
Release v1.24.0 (#1732)v1.24.0
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.md | 32 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 34 insertions, 2 deletions
@@ -164,7 +164,7 @@ See <https://github.com/42wim/matterbridge/wiki> ### Binaries -- Latest stable release [v1.23.2](https://github.com/42wim/matterbridge/releases/latest) +- Latest stable release [v1.24.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). On \*nix platforms you may need to make the binary executable - you can do this by running `chmod a+x` on the binary (example: `chmod a+x matterbridge-1.20.0-linux-64bit`). After downloading (and making the binary executable, if necessary), 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. diff --git a/changelog.md b/changelog.md index b5eb0cbe..88b82ccd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,35 @@ +# v1.24.0 + +## New features + +- harmony: new protocol added: Add support for Harmony (#1656) +- irc: Allow binding to IP on IRC (#1640) +- irc: Add support for client certificate (irc) (#1710) +- mattermost: Add UseUsername option (mattermost). Fixes #1665 (#1714) +- mattermost: Add support for using ID in channel config (mattermost) (#1715) +- matrix: Reply support for Matrix (#1664) +- telegram: Add Telegram Bot Command /chatId (telegram) (#1703) + +## Enhancements + +- general: Update dependencies/vendor (#1659) +- discord: Add more debug options for discord (#1712) +- docker: Use Alpine stable again in Dockerfile (#1643) +- mattermost: Log eventtype in debug (mattermost) (#1676) +- mattermost: Add more ignore debug messages (mattermost) (#1678) +- slack: Add support for deleting files from slack to discord. Fixes #1705 (#1709) +- telegram: Add support for code blocks in telegram (#1650) +- telegram: Update telegram-bot-api to v5 (#1660) +- telegram: Add comments to messages (telegram) (#1652) +- telegram: Add support for sender_chat (telegram) (#1677) +- vk: Remove GroupID (vk) (#1668) + +## Bugfix + +- mattermost: Use current parentID if rootId is not set (mattermost) (#1675) +- matrix: Make HTMLDisable work correct (matrix) (#1716) +- whatsapp: Make EditSuffix option actually work (whatsapp). Fixes #1510 (#1728) + # v1.23.2 If you're running whatsapp you should update. diff --git a/version/version.go b/version/version.go index 90503d19..c806958b 100644 --- a/version/version.go +++ b/version/version.go @@ -1,6 +1,6 @@ package version var ( - Release = "1.23.3-dev" + Release = "1.24.0" GitHash string ) |