From: Sebastián Ramírez Date: Sat, 17 Feb 2024 13:53:16 +0000 (+0100) Subject: 🔖 Release version 0.0.16 X-Git-Tag: 0.0.16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b562358fc1e857dd1ce4b8b23a9f68c0337430d;p=thirdparty%2Ffastapi%2Fsqlmodel.git 🔖 Release version 0.0.16 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 1da7afb8..d9726614 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.16 + ### Features * ✨ Add new method `.sqlmodel_update()` to update models in place, including an `update` parameter for extra data. And fix implementation for the (now documented) `update` parameter for `.model_validate()`. PR [#804](https://github.com/tiangolo/sqlmodel/pull/804) by [@tiangolo](https://github.com/tiangolo). diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index c9629a98..556bba18 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.15" +__version__ = "0.0.16" # Re-export from SQLAlchemy from sqlalchemy.engine import create_engine as create_engine