Skip to content

Commit

Permalink
version: 1.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-right committed Sep 13, 2023
1 parent 41c4cc3 commit 5c73ea4
Show file tree
Hide file tree
Showing 4 changed files with 13 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 @@ -31,7 +31,7 @@
from beanie.odm.views import View
from beanie.odm.union_doc import UnionDoc

__version__ = "1.22.0"
__version__ = "1.22.1"
__all__ = [
# ODM
"Document",
Expand Down
11 changes: 10 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,21 @@

Beanie project

## [1.22.1] - 2023-09-13
### Fix | List_Collection_Names Requires Unnecessary Privileges
- Author - [Marina](https://github.com/marinashe)
- PR <https://github.com/roman-right/beanie/pull/681>
- Issues:
- [[BUG] Can't use a View if the user doesn't have full read privileges to all collections](https://github.com/roman-right/beanie/issues/680)

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

## [1.22.0] - 2023-09-13
### Fix | August 2023
- Author - [Roman Right](https://github.com/roman-right)
- PR <https://github.com/roman-right/beanie/pull/669>

- Issues:

- [[BUG] Issue with `List[Link[Type]]` when `fetch_all_links` is called](https://github.com/roman-right/beanie/issues/576)
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.0"
version = "1.22.1"
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.0"
assert __version__ == "1.22.1"

0 comments on commit 5c73ea4

Please sign in to comment.