From: Sebastián Ramírez Date: Sun, 29 Oct 2023 09:56:39 +0000 (+0400) Subject: 🔖 Release version 0.0.11 X-Git-Tag: 0.0.11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dacc1fa9ca9f1b71f768dd8dd196650d909255fb;p=thirdparty%2Ffastapi%2Fsqlmodel.git 🔖 Release version 0.0.11 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 1cb36ed5..fa1525ce 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.0.11 + ### Features * ✨ Add support for passing a custom SQLAlchemy type to `Field()` with `sa_type`. PR [#505](https://github.com/tiangolo/sqlmodel/pull/505) by [@maru0123-2004](https://github.com/maru0123-2004). diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index 6b65860d..495ac9c8 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.10" +__version__ = "0.0.11" # Re-export from SQLAlchemy from sqlalchemy.engine import create_mock_engine as create_mock_engine