🔖 Release version 0.0.22

This commit is contained in:
Sebastián Ramírez 2024-08-31 11:40:12 +02:00
parent 5930fb0551
commit 016b2baaad
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Latest Changes
## 0.0.22
### Fixes
* 🐛 Fix support for types with `Optional[Annoated[x, f()]]`, e.g. `id: Optional[pydantic.UUID4]`. PR [#1093](https://github.com/fastapi/sqlmodel/pull/1093) by [@tiangolo](https://github.com/tiangolo).

View File

@ -1,4 +1,4 @@
__version__ = "0.0.21"
__version__ = "0.0.22"
# Re-export from SQLAlchemy
from sqlalchemy.engine import create_engine as create_engine