diff --git a/CHANGELOG.md b/CHANGELOG.md index d761b89c..9599f6cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.20.2 (unreleased) +## v0.20.2 (2023-09-09) * *(crypto)* Changed `OlmMachine.share_keys` to make the OTK count parameter optional. When omitted, the count is fetched from the server. @@ -6,6 +6,8 @@ synchronously. * *(appservice)* Added `log` and `hs_token` parameters to `AppServiceServerMixin` to allow using it as a standalone class without extending. +* *(api)* Added support for setting appservice `user_id` and `device_id` query + parameters manually without using `AppServiceAPI`. ## v0.20.1 (2023-08-29) diff --git a/mautrix/__init__.py b/mautrix/__init__.py index 19015ee4..d52cd2af 100644 --- a/mautrix/__init__.py +++ b/mautrix/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.20.1" +__version__ = "0.20.2" __author__ = "Tulir Asokan " __all__ = [ "api",