diff --git a/docs/release-notes.md b/docs/release-notes.md index f94771c7df..e3c35629d8 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.12 + ### Features * ✨ Upgrade SQLAlchemy to 2.0. PR [#700](https://github.com/tiangolo/sqlmodel/pull/700) by [@tiangolo](https://github.com/tiangolo) including initial work in PR [#563](https://github.com/tiangolo/sqlmodel/pull/563) by [@farahats9](https://github.com/farahats9). diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index e943257165..5b117a1c05 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.11" +__version__ = "0.0.12" # Re-export from SQLAlchemy from sqlalchemy.engine import create_engine as create_engine