Skip to content

Commit

Permalink
Release 0.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Jul 29, 2024
1 parent 8f39368 commit e0950b2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/en/docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## 0.10.5

### Added

- [exists()](./queries.md#exists) allowing to query for a document existance in the database.

## 0.10.4

### Fix
Expand Down
2 changes: 1 addition & 1 deletion mongoz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.10.4"
__version__ = "0.10.5"

from .conf import settings
from .conf.global_settings import MongozSettings
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ dependencies = [

[tool.hatch.envs.test.scripts]
# needs docker services running
test = "pytest {args}"
test_man = "pytest {args} --disable-pytest-warnings -s -vv"
test = "pytest {args} --disable-warnings"
test_man = "pytest {args} --disable-pytest-warnings -s -vv --disable-warnings"
coverage = "pytest --cov=asyncz --cov=tests --cov-report=term-missing:skip-covered --cov-report=html tests {args}"
check_types = "mypy -p mongoz"

Expand Down

0 comments on commit e0950b2

Please sign in to comment.