diff --git a/docs/release-notes.md b/docs/release-notes.md index a2f992f..40cf5a4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,10 @@ ## Latest Changes + +## 0.0.2 + +* This includes several small bug-fixes detected during the first CI runs. * 💚 Fix CI installs and tests. PR [#2](https://github.com/tiangolo/sqlmodel/pull/2) by [@tiangolo](https://github.com/tiangolo). ## 0.0.1 diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index cdfb889..04f53e4 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.1" +__version__ = "0.0.2" # Re-export from SQLAlchemy from sqlalchemy.engine import create_mock_engine as create_mock_engine