Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed May 16, 2021
1 parent f871a4b commit b4c324e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion beanie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from beanie.odm.utils.general import init_beanie
from beanie.odm.documents import Document

__version__ = "1.0.1"
__version__ = "1.0.2"
__all__ = [
# ODM
"Document",
Expand Down
9 changes: 8 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
Beanie project changes

## [1.0.2] - 2021-05-14
### Fixed
- Deprecated import. [PR](https://github.com/roman-right/beanie/pull/33).
**Thanks [Oliver Andrich](https://github.com/oliverandrich)**


## [1.0.1] - 2021-05-14
### Fixed
- `Document` self annotation. [Issue](https://github.com/roman-right/beanie/issues/29)
Expand Down Expand Up @@ -83,4 +89,5 @@ Beanie project changes
[0.4.2]: https://pypi.org/project/beanie/0.4.2
[0.4.3]: https://pypi.org/project/beanie/0.4.3
[1.0.0]: https://pypi.org/project/beanie/1.0.0
[1.0.1]: https://pypi.org/project/beanie/1.0.1
[1.0.1]: https://pypi.org/project/beanie/1.0.1
[1.0.2]: https://pypi.org/project/beanie/1.0.2
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 = "1.0.1"
version = "1.0.2"
description = "Asynchronous Python ODM for MongoDB"
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__ == "1.0.1"
assert __version__ == "1.0.2"

0 comments on commit b4c324e

Please sign in to comment.