From f2e143925219ebac2c5f665dd4368b4708e6ae96 Mon Sep 17 00:00:00 2001 From: Roman Right Date: Sun, 24 Dec 2023 17:31:02 -0600 Subject: [PATCH] version | 1.24.0 (#815) --- beanie/__init__.py | 2 +- docs/changelog.md | 48 ++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- tests/test_beanie.py | 2 +- 4 files changed, 51 insertions(+), 3 deletions(-) diff --git a/beanie/__init__.py b/beanie/__init__.py index e3d01489..4043e008 100644 --- a/beanie/__init__.py +++ b/beanie/__init__.py @@ -33,7 +33,7 @@ from beanie.odm.utils.init import init_beanie from beanie.odm.views import View -__version__ = "1.23.6" +__version__ = "1.24.0" __all__ = [ # ODM "Document", diff --git a/docs/changelog.md b/docs/changelog.md index 34dfb0e2..2eaf6410 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,54 @@ Beanie project +## [1.24.0] - 2023-12-24 + +### Exclude revision_id From The get_changes Method +- Author - [Roman Right](https://github.com/roman-right) +- PR + +### Add Support For Custom Bucket Fields In Time Series +- Author - [Lucas Hardt](https://github.com/Luc1412) +- PR + +### Add Bson Maxkey And Minkey +- Author - [Noah Witt](https://github.com/noah-witt) +- PR + +### Update Model During Save Validation +- Author - [Roman Right](https://github.com/roman-right) +- PR + +### Fix init_beanie document_models Type Hint +- Author - [Capi Etheriel](https://github.com/barraponto) +- PR + +### Fix Encoding Keys In `Mapping` Branch Of `Encoder` +- Author - [Rubikoid](https://github.com/Rubikoid) +- PR + +### Improve Write Performances +- Author - [Thibault Djaballah](https://github.com/tdjaballah) +- PR + +### Doc Update: Queue +- Author - [Roman Right](https://github.com/roman-right) +- PR + +### Tests For Indexed Fields +- Author - [Roman Right](https://github.com/roman-right) +- PR + +### Rework Revision +- Author - [Roman Right](https://github.com/roman-right) +- PR + +### Add Missing Type Signature To `Document` Constructor +- Author - [None](https://github.com/johnthagen) +- PR + +[1.24.0]: https://pypi.org/project/beanie/1.24.0 + ## [1.23.6] - 2023-11-12 ### Fix Multiprocessing Mode diff --git a/pyproject.toml b/pyproject.toml index 3f80c336..8c8655e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "beanie" -version = "1.23.6" +version = "1.24.0" description = "Asynchronous Python ODM for MongoDB" readme = "README.md" requires-python = ">=3.7,<4.0" diff --git a/tests/test_beanie.py b/tests/test_beanie.py index e68cf217..84b4605a 100644 --- a/tests/test_beanie.py +++ b/tests/test_beanie.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.23.6" + assert __version__ == "1.24.0"