diff --git a/beanie/__init__.py b/beanie/__init__.py index 7fb3764e..aad1ec9f 100644 --- a/beanie/__init__.py +++ b/beanie/__init__.py @@ -31,7 +31,7 @@ from beanie.odm.utils.init import init_beanie from beanie.odm.views import View -__version__ = "1.23.1" +__version__ = "1.23.2" __all__ = [ # ODM "Document", diff --git a/docs/changelog.md b/docs/changelog.md index eb9727d5..4a502176 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,26 @@ Beanie project +## [1.23.2] - 2023-11-08 + +### Fix Aggregations With Text Queries +- Author - [Benjamin Earle](https://github.com/MrEarle) +- PR + +### Handle Annotated Indexes +- Author - [Benjamin Earle](https://github.com/MrEarle) +- PR + +### Fix Docstring +- Author - [Andrew Grinevich](https://github.com/Derfirm) +- PR + +### Build Aggregation Pipeline From Find Query Without Fetch +- Author - [Roman Right](https://github.com/roman-right) +- PR + +[1.23.2]: https://pypi.org/project/beanie/1.23.2 + ## [1.23.1] - 2023-10-23 ### Fix: Issue #631 diff --git a/pyproject.toml b/pyproject.toml index 7c785814..ad9c7f99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "beanie" -version = "1.23.1" +version = "1.23.2" 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 567f71ce..bc6ae97e 100644 --- a/tests/test_beanie.py +++ b/tests/test_beanie.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.23.1" + assert __version__ == "1.23.2"