diff --git a/CHANGELOG.md b/CHANGELOG.md index 83c64599..7639881e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# v0.11.2 (2022-02-??, unreleased) +# v0.11.2 (2022-02-14) + +**N.B.** This will be the last release to support Python 3.7. Future versions +will require Python 3.8 or higher. In general, the mautrix bridges will only +support the lowest Python version in the latest Debian or Ubuntu LTS. ### Added * Added simple fallback message for live location and venue messages from Telegram. @@ -12,9 +16,11 @@ distinguish them on the Telegram side. * Improved syncing profile info to room info when using encryption and/or the `private_chat_profile_meta` config option. +* Removed legacy `community_id` config option. ### Fixed * Fixed newlines disappearing when bridging channel messages with signatures. +* Fixed login throwing an error if a previous login code expired. * Fixed bug in v0.11.0 that broke `!tg create`. # v0.11.1 (2022-01-10) diff --git a/mautrix_telegram/__init__.py b/mautrix_telegram/__init__.py index d2982fa8..54bf328f 100644 --- a/mautrix_telegram/__init__.py +++ b/mautrix_telegram/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.11.1" +__version__ = "0.11.2" __author__ = "Tulir Asokan "