Skip to content

Commit

Permalink
Bump version to 0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Jan 11, 2023
1 parent ac82892 commit 51c4e4b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.19.1 (2023-01-11)

* Marked Python 3.11 as supported. Python 3.8 support will likely be dropped in
the coming months.
* *(client.api)* Added request payload memory optimization to MSC3870 URL uploads.
* aiohttp will duplicate the entire request body if it's raw bytes, which
wastes a lot of memory. The optimization is passing an iterator instead of
raw bytes, so aiohttp won't accidentally duplicate the whole thing.
* The main `HTTPAPI` has had the optimization for a while, but uploading to
URL calls aiohttp manually.

## v0.19.0 (2023-01-10)

* **Breaking change *(appservice)*** Removed typing status from state store.
Expand Down
2 changes: 1 addition & 1 deletion mautrix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.19.0"
__version__ = "0.19.1"
__author__ = "Tulir Asokan <[email protected]>"
__all__ = [
"api",
Expand Down

0 comments on commit 51c4e4b

Please sign in to comment.