Skip to content

Commit 51c4e4b

Browse files
committed
Bump version to 0.19.1
1 parent ac82892 commit 51c4e4b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v0.19.1 (2023-01-11)
2+
3+
* Marked Python 3.11 as supported. Python 3.8 support will likely be dropped in
4+
the coming months.
5+
* *(client.api)* Added request payload memory optimization to MSC3870 URL uploads.
6+
* aiohttp will duplicate the entire request body if it's raw bytes, which
7+
wastes a lot of memory. The optimization is passing an iterator instead of
8+
raw bytes, so aiohttp won't accidentally duplicate the whole thing.
9+
* The main `HTTPAPI` has had the optimization for a while, but uploading to
10+
URL calls aiohttp manually.
11+
112
## v0.19.0 (2023-01-10)
213

314
* **Breaking change *(appservice)*** Removed typing status from state store.

mautrix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.19.0"
1+
__version__ = "0.19.1"
22
__author__ = "Tulir Asokan <[email protected]>"
33
__all__ = [
44
"api",

0 commit comments

Comments
 (0)