From: Sebastián Ramírez Date: Sat, 17 Feb 2024 13:36:12 +0000 (+0100) Subject: 🔖 Release version 0.0.15 X-Git-Tag: 0.0.15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fec8848647fcb1a9853b014925af7b35a8e663a;p=thirdparty%2Ffastapi%2Fsqlmodel.git 🔖 Release version 0.0.15 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index e37cbdad..a0431a9b 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.15 + ### Fixes * 🐛 Fix class initialization compatibility with Pydantic and SQLModel, fixing errors revealed by the latest Pydantic. PR [#807](https://github.com/tiangolo/sqlmodel/pull/807) by [@tiangolo](https://github.com/tiangolo). diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index 2df3afb5..c9629a98 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.14" +__version__ = "0.0.15" # Re-export from SQLAlchemy from sqlalchemy.engine import create_engine as create_engine