From c8b4119f39a78c757cd6c96308fb7e399e9237b9 Mon Sep 17 00:00:00 2001 From: Julien Maupetit Date: Tue, 11 Jun 2024 09:52:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96(minor)=20bump=20release=20to=200.9?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added: - Document API authentication flow - Document API data schemas Changed: - Upgrade `pydantic-extra-types` to `2.8.0` - Upgrade `pydantic-settings` to `2.3.1` - Upgrade `sentry-sdk` to `2.5.1` - Upgrade `sqlmodel` to `0.0.19` Fixed: - Improve database transactions in statique endpoints - Allow to update all statique-related model fields --- CHANGELOG.md | 5 ++++- src/api/pyproject.toml | 2 +- src/api/qualicharge/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 004c0582..dab26028 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to ## [Unreleased] +## [0.9.0] - 2024-06-11 + ### Added - Document API authentication flow @@ -120,7 +122,8 @@ and this project adheres to - Implement base FastAPI app -[unreleased]: https://github.com/MTES-MCT/qualicharge/compare/v0.8.0...main +[unreleased]: https://github.com/MTES-MCT/qualicharge/compare/v0.9.0...main +[0.9.0]: https://github.com/MTES-MCT/qualicharge/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/MTES-MCT/qualicharge/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/MTES-MCT/qualicharge/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/MTES-MCT/qualicharge/compare/v0.5.0...v0.6.0 diff --git a/src/api/pyproject.toml b/src/api/pyproject.toml index 36b65973..e52e1604 100644 --- a/src/api/pyproject.toml +++ b/src/api/pyproject.toml @@ -3,7 +3,7 @@ # [project] name = "qualicharge" -version = "0.8.0" +version = "0.9.0" # Third party packages configuration [tool.coverage.run] diff --git a/src/api/qualicharge/__init__.py b/src/api/qualicharge/__init__.py index 4c3419e7..bc39d321 100644 --- a/src/api/qualicharge/__init__.py +++ b/src/api/qualicharge/__init__.py @@ -1,3 +1,3 @@ """QualiCharge package root.""" -__version__ = "0.8.0" +__version__ = "0.9.0"