Skip to content

Commit

Permalink
version 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed Apr 9, 2021
1 parent 55a2e01 commit b94c883
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 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.3"
__version__ = "0.3.4"
__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,7 +1,11 @@
# Changelog
Beanie project changes

## [0.3.3] - 2021-03-25
## [0.3.4] - 2021-04-09
### Changed
- `Indexed(...)` field supports index types. [Documentation](https://roman-right.github.io/beanie/#indexes). **Thanks [Joran van Apeldoorn](https://github.com/jorants)**

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

Expand All @@ -27,4 +31,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.3]: https://pypi.org/project/beanie/0.3.3
[0.3.3]: https://pypi.org/project/beanie/0.3.3
[0.3.4]: https://pypi.org/project/beanie/0.3.3
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "beanie"
version = "0.3.3"
description = "MongoDB ODM based on Pydantic and Motor"
version = "0.3.4"
description = "Asynchronous Python ODM for MongoDB"
authors = ["Roman <roman-right@protonmail.com>"]
license = "Apache-2.0"
homepage = "https://github.com/roman-right/beanie"
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.3"
assert __version__ == "0.3.4"

0 comments on commit b94c883

Please sign in to comment.