Skip to content

Commit

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

Beanie project

## [1.23.0] - 2023-10-15
### Refactor Encoder
- Author - [George Sakkis](https://github.com/gsakkis)
- PR <https://github.com/roman-right/beanie/pull/584>

### Preserve Sort/Skip/Limit For Aggregations
- Author - [George Sakkis](https://github.com/gsakkis)
- PR <https://github.com/roman-right/beanie/pull/711>

### Update Pre-Commit Hooks
- Author - [SADIK KUZU](https://github.com/sadikkuzu)
- PR <https://github.com/roman-right/beanie/pull/712>

### Fixed Link Validation
- Author - [Evgeniy Goncharuck](https://github.com/iterlace)
- PR <https://github.com/roman-right/beanie/pull/714>

### Fix: pydantic_core._pydantic_core.Url object is not iterable
- Author - [Tomohiro Hiratsuka](https://github.com/tomohirohiratsuka)
- PR <https://github.com/roman-right/beanie/pull/730>

### Simplify And Fix DecimalAnnotation
- Author - [George Sakkis](https://github.com/gsakkis)
- PR <https://github.com/roman-right/beanie/pull/738>

- Issues:

- [[BUG] Validation Error on parsing retrieved document's BSON Decimal128 field](https://github.com/roman-right/beanie/issues/691)

### Simplify BsonBinary
- Author - [George Sakkis](https://github.com/gsakkis)
- PR <https://github.com/roman-right/beanie/pull/739>

### Minor Fixes
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/745>

### Replace Encoder With get_dict In The replace_one Method
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/747>

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

## [1.22.6] - 2023-09-16
### Update Precommit Hooks & CI
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.22.6"
version = "1.23.0"
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.22.6"
assert __version__ == "1.23.0"

0 comments on commit 0718894

Please sign in to comment.