Skip to content

Commit

Permalink
version | 1.24.0 (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed Dec 24, 2023
1 parent 53cf823 commit f2e1439
Show file tree
Hide file tree
Showing 4 changed files with 51 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 @@ -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",
Expand Down
48 changes: 48 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/roman-right/beanie/pull/759>

### Add Support For Custom Bucket Fields In Time Series
- Author - [Lucas Hardt](https://github.com/Luc1412)
- PR <https://github.com/roman-right/beanie/pull/760>

### Add Bson Maxkey And Minkey
- Author - [Noah Witt](https://github.com/noah-witt)
- PR <https://github.com/roman-right/beanie/pull/768>

### Update Model During Save Validation
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/776>

### Fix init_beanie document_models Type Hint
- Author - [Capi Etheriel](https://github.com/barraponto)
- PR <https://github.com/roman-right/beanie/pull/784>

### Fix Encoding Keys In `Mapping` Branch Of `Encoder`
- Author - [Rubikoid](https://github.com/Rubikoid)
- PR <https://github.com/roman-right/beanie/pull/785>

### Improve Write Performances
- Author - [Thibault Djaballah](https://github.com/tdjaballah)
- PR <https://github.com/roman-right/beanie/pull/786>

### Doc Update: Queue
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/794>

### Tests For Indexed Fields
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/795>

### Rework Revision
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/797>

### Add Missing Type Signature To `Document` Constructor
- Author - [None](https://github.com/johnthagen)
- PR <https://github.com/roman-right/beanie/pull/813>

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

## [1.23.6] - 2023-11-12
### Fix Multiprocessing Mode
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.6"
version = "1.24.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.23.6"
assert __version__ == "1.24.0"

0 comments on commit f2e1439

Please sign in to comment.