Skip to content

Commit

Permalink
version: 1.23.2 (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed Nov 9, 2023
1 parent d88d118 commit dbfc729
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion beanie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
20 changes: 20 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/roman-right/beanie/pull/752>

### Handle Annotated Indexes
- Author - [Benjamin Earle](https://github.com/MrEarle)
- PR <https://github.com/roman-right/beanie/pull/762>

### Fix Docstring
- Author - [Andrew Grinevich](https://github.com/Derfirm)
- PR <https://github.com/roman-right/beanie/pull/766>

### Build Aggregation Pipeline From Find Query Without Fetch
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/770>

[1.23.2]: https://pypi.org/project/beanie/1.23.2

## [1.23.1] - 2023-10-23
### Fix: Issue #631
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_beanie.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "1.23.1"
assert __version__ == "1.23.2"

0 comments on commit dbfc729

Please sign in to comment.