Skip to content

Commit

Permalink
version: 1.23.1 (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed Oct 24, 2023
1 parent 46683ce commit 5d1e91e
Show file tree
Hide file tree
Showing 4 changed files with 19 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.0"
__version__ = "1.23.1"
__all__ = [
# ODM
"Document",
Expand Down
16 changes: 16 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

Beanie project

## [1.23.1] - 2023-10-23
### Fix: Issue #631
- Author - [IterableTrucks](https://github.com/IterableTrucks)
- PR <https://github.com/roman-right/beanie/pull/734>

### Replace Custom 'Hidden=True' Field Attribute With Builtin 'Exclude=True'
- Author - [George Sakkis](https://github.com/gsakkis)
- PR <https://github.com/roman-right/beanie/pull/741>

### Add Support For Indexed Custom Pydantic Fields
- Author - [Adam Asay](https://github.com/aasay)
- PR <https://github.com/roman-right/beanie/pull/754>

[1.23.1]: https://pypi.org/project/beanie/1.23.0

## [1.23.0] - 2023-10-15
### Refactor Encoder
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.0"
version = "1.23.1"
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.0"
assert __version__ == "1.23.1"

0 comments on commit 5d1e91e

Please sign in to comment.