diff --git a/docs/release-notes.md b/docs/release-notes.md index 62806885be..b2f290013e 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,9 +2,11 @@ ## Latest Changes +## 0.0.14 + ### Features -* ✨ Add support for Pydantic v2 (while keeping support for v1 if v2 is not available), including initial work by AntonDeMeester. PR [#722](https://github.com/tiangolo/sqlmodel/pull/722) by [@tiangolo](https://github.com/tiangolo). +* ✨ Add support for Pydantic v2 (while keeping support for v1 if v2 is not available). PR [#722](https://github.com/tiangolo/sqlmodel/pull/722) by [@tiangolo](https://github.com/tiangolo) including initial work in PR [#699](https://github.com/tiangolo/sqlmodel/pull/699) by [@AntonDeMeester](https://github.com/AntonDeMeester). ## 0.0.13 diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index 0062dfaeb7..2df3afb51e 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.13" +__version__ = "0.0.14" # Re-export from SQLAlchemy from sqlalchemy.engine import create_engine as create_engine