From: Sebastián Ramírez Date: Thu, 2 Apr 2026 21:02:44 +0000 (+0200) Subject: 🔖 Release version 0.0.38 X-Git-Tag: 0.0.38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de0ecdf63e9eae5da67f7ffc8d73577a326e30b9;p=thirdparty%2Ffastapi%2Fsqlmodel.git 🔖 Release version 0.0.38 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index dbe17d564..95c06a273 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.38 (2026-04-02) + ### Fixes * 🐛 Fix type annotation in `SQLModel.__new__`, avoid explicitly returning `Any`. PR [#1846](https://github.com/fastapi/sqlmodel/pull/1846) by [@carljm](https://github.com/carljm). diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index 406b08af9..8e3cdaae3 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.37" +__version__ = "0.0.38" # Re-export from SQLAlchemy from sqlalchemy.engine import create_engine as create_engine