Skip to content

Commit 2ab1cdc

Browse files
committed
Bump version to 0.20.0
1 parent 654b215 commit 2ab1cdc

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.20.0 (unreleased)
1+
## v0.20.0 (2023-06-25)
22

33
* Dropped Python 3.8 support.
44
* **Breaking change *(.state_store)*** Removed legacy SQLAlchemy state store
@@ -11,10 +11,15 @@
1111
* Bridge configs do this migration automatically.
1212
* *(util.async_db)* Added warning log if using SQLite database path that isn't
1313
writable.
14+
* *(util.program)* Fixed `manual_stop` not working if it's called during startup.
1415
* *(client)* Stabilized support for asynchronous uploads.
1516
* `unstable_create_msc` was renamed to `create_mxc`, and the `max_stall_ms`
16-
parameters for downloading were renamed to `timeout_ms`..
17+
parameters for downloading were renamed to `timeout_ms`.
1718
* *(crypto)* Added option to not rotate keys when devices change.
19+
* *(crypto)* Added option to remove all keys that were received before the
20+
automatic ratcheting was implemented (in v0.19.10).
21+
* *(types)* Improved reply fallback removal to have a smaller chance of false
22+
positives for messages that don't use reply fallbacks.
1823

1924
## v0.19.16 (2023-05-26)
2025

mautrix/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.20.0rc1"
1+
__version__ = "0.20.0"
22
__author__ = "Tulir Asokan <[email protected]>"
33
__all__ = [
44
"api",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
],
2929
extras_require={
3030
"detect_mimetype": ["python-magic>=0.4.15,<0.5"],
31-
"lint": ["black~=22.1", "isort"],
31+
"lint": ["black~=23.1", "isort"],
3232
"test": ["pytest", "pytest-asyncio", *test_dependencies],
3333
"encryption": encryption_dependencies,
3434
},

0 commit comments

Comments
 (0)