Skip to content

Commit

Permalink
Bump version to 0.19.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Jan 27, 2023
1 parent ea6cc31 commit fa9f9fd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.19.3 (2023-01-27)

* *(bridge)* Bumped default timeouts for decrypting incoming messages.

## v0.19.2 (2023-01-14)

* *(util.async_body)* Added utility for reading aiohttp response into a bytearray
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.2"
__version__ = "0.19.3"
__author__ = "Tulir Asokan <tulir@maunium.net>"
__all__ = [
"api",
Expand Down
2 changes: 1 addition & 1 deletion optional-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python-magic
ruamel.yaml
SQLAlchemy
SQLAlchemy<2
commonmark
lxml
asyncpg
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from mautrix import __version__

encryption_dependencies = ["python-olm", "unpaddedbase64", "pycryptodome"]
test_dependencies = ["aiosqlite", "sqlalchemy", "asyncpg", *encryption_dependencies]
test_dependencies = ["aiosqlite", "sqlalchemy<2", "asyncpg", *encryption_dependencies]

setuptools.setup(
name="mautrix",
Expand Down

0 comments on commit fa9f9fd

Please sign in to comment.