Skip to content

Commit 5bc2356

Browse files
committed
bump version sqlalchemy
1 parent 78db944 commit 5bc2356

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fastapi_async_sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ["db", "SQLAlchemyMiddleware"]
44

5-
__version__ = "0.3.1.dev5"
5+
__version__ = "0.3.2"

fastapi_async_sqlalchemy/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def __init__(self):
77
or you need to manually create a session context by using a `db` instance as
88
a context manager e.g.:
99
10-
with db():
10+
async with db():
1111
await db.session.execute(foo.select()).fetchall()
1212
"""
1313

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ PyYAML>=5.4
2727
regex==2020.2.20
2828
requests==2.22.0
2929
six==1.12.0
30-
SQLAlchemy==1.4.9
30+
SQLAlchemy==1.4.11
3131
asyncpg==0.22.0
3232
aiosqlite==0.17.0
3333
sqlparse==0.4.1

0 commit comments

Comments
 (0)