From efd831b9a172a7ae98c58ffb231176c9f7f99bd8 Mon Sep 17 00:00:00 2001 From: Julien Maupetit Date: Mon, 1 Jul 2024 15:17:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96(minor)=20bump=20release=20to=200.1?= =?UTF-8?q?0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed: - API dynamique bulk requests now returns the number of created items - Upgrade alembic to `1.13.2` - Upgrade Pydantic to `2.7.4` - Upgrade pydantic-settings to `2.3.4` - Upgrade pydantic-extra-types to `2.8.2` - Upgrade email-validator to `2.2.0` - Upgrade sentry-sdk to `2.7.1` --- src/api/CHANGELOG.md | 5 ++++- src/api/pyproject.toml | 2 +- src/api/qualicharge/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/api/CHANGELOG.md b/src/api/CHANGELOG.md index 91d6eaa0..cb0f9b9d 100644 --- a/src/api/CHANGELOG.md +++ b/src/api/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to ## [Unreleased] +## [0.10.0] - 2024-07-01 + ### Changed - API dynamique bulk requests now returns the number of created items @@ -132,7 +134,8 @@ and this project adheres to - Implement base FastAPI app -[unreleased]: https://github.com/MTES-MCT/qualicharge/compare/v0.9.0...main +[unreleased]: https://github.com/MTES-MCT/qualicharge/compare/v0.10.0...main +[0.10.0]: https://github.com/MTES-MCT/qualicharge/compare/v0.9.0...v0.10.0 [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 diff --git a/src/api/pyproject.toml b/src/api/pyproject.toml index e52e1604..b13b2b4a 100644 --- a/src/api/pyproject.toml +++ b/src/api/pyproject.toml @@ -3,7 +3,7 @@ # [project] name = "qualicharge" -version = "0.9.0" +version = "0.10.0" # Third party packages configuration [tool.coverage.run] diff --git a/src/api/qualicharge/__init__.py b/src/api/qualicharge/__init__.py index bc39d321..289a76ee 100644 --- a/src/api/qualicharge/__init__.py +++ b/src/api/qualicharge/__init__.py @@ -1,3 +1,3 @@ """QualiCharge package root.""" -__version__ = "0.9.0" +__version__ = "0.10.0"