Skip to content

Commit eadb792

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into optional-aiosqlite
2 parents 3a1cf62 + 08c2421 commit eadb792

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ Changelog
1212

1313
0.26.0 (unreleased)
1414
-------------------
15+
Fixed
16+
^^^^^
17+
- Fix exception when creating aiosqlite connections on aiosqlite==0.22.0 (#2035)
1518

1619
0.25
1720
====

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ dependencies = [
1313
"anyio (>=4.12.0,<5.0.0)",
1414
"typing-extensions>=4.15.0; python_version < '3.11'",
1515
"pytz",
16+
# Typing support for older Python
17+
"typing-extensions (>= 4.1.0)",
1618
]
1719
classifiers = [
1820
"License :: OSI Approved :: Apache Software License",

tortoise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ async def main() -> None:
648648
portal.call(main)
649649

650650

651-
__version__ = "0.25.1"
651+
__version__ = "0.25.2"
652652

653653
__all__ = [
654654
"Model",

0 commit comments

Comments
 (0)