We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6acd0be commit a8c0ad5Copy full SHA for a8c0ad5
mautrix/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = "0.20.9rc2"
+__version__ = "0.20.9rc3"
2
__author__ = "Tulir Asokan <[email protected]>"
3
__all__ = [
4
"api",
mautrix/client/state_store/asyncpg/upgrade.py
@@ -74,4 +74,4 @@ async def upgrade_v3(conn: Connection) -> None:
74
75
@upgrade_table.register(description="Add create event to room state cache")
76
async def upgrade_v4(conn: Connection) -> None:
77
- await conn.execute("ALTER TABLE mx_room_state ADD COLUMN create_event TYPE TEXT")
+ await conn.execute("ALTER TABLE mx_room_state ADD COLUMN create_event TEXT")
0 commit comments