Skip to content

Commit

Permalink
version 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed Apr 9, 2021
1 parent ebdb046 commit 30b71a6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion beanie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
from beanie.general import init_beanie
from beanie.collection import Indexed

__version__ = "0.3.2"
__version__ = "0.3.3"
__all__ = ["Document", "Cursor", "init_beanie", "Indexed"]
9 changes: 7 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog
Beanie project changes

## [0.3.3] - 2021-03-25
### Added
- Simple indexes via type hints. [Documentation](https://roman-right.github.io/beanie/#indexes). **Thanks [Joran van Apeldoorn](https://github.com/jorants)**

## [0.3.2] - 2021-03-25
### Added
- `init_beanie` supports also lists of strings with model paths as the` document_models` parameter. [Documentation](https://roman-right.github.io/beanie/#init) - Thanks [Mohamed Nesredin](https://github.com/Mohamed-Kaizen)
- `init_beanie` supports also lists of strings with model paths as the` document_models` parameter. [Documentation](https://roman-right.github.io/beanie/#init). **Thanks [Mohamed Nesredin](https://github.com/Mohamed-Kaizen)**

## [0.3.1] - 2021-03-21
### Added
Expand All @@ -22,4 +26,5 @@ Beanie project changes

[0.3.0]: https://pypi.org/project/beanie/0.3.0
[0.3.1]: https://pypi.org/project/beanie/0.3.1
[0.3.2]: https://pypi.org/project/beanie/0.3.2
[0.3.2]: https://pypi.org/project/beanie/0.3.2
[0.3.3]: https://pypi.org/project/beanie/0.3.3
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "beanie"
version = "0.3.2"
version = "0.3.3"
description = "MongoDB ODM based on Pydantic and Motor"
authors = ["Roman <roman-right@protonmail.com>"]
license = "Apache-2.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__ == "0.3.2"
assert __version__ == "0.3.3"

0 comments on commit 30b71a6

Please sign in to comment.