Skip to content

Commit c7905fb

Browse files
committed
2.0.0
1 parent 4cf2f64 commit c7905fb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/fastapi_example/routes/multiple_session_usage.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ async def handler_multiple_sessions() -> None:
2626
_insert(), # context session
2727
run_in_new_ctx(_insert), # new context and session with autocommit
2828
run_in_new_ctx( # new context and session with manual commit
29-
_insert_manual, "example_multiple_sessions",
29+
_insert_manual,
30+
"example_multiple_sessions",
3031
),
3132
_insert_non_ctx(), # new non context session
3233
_insert_non_ctx_manual(), # new non context session

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "context-async-sqlalchemy"
3-
version = "1.2.3"
3+
version = "2.0.0"
44
description = "A convenient way to configure and interact with a async sqlalchemy session through context in asynchronous applications"
55
readme = "README.md"
66
authors = [

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)