From e0950b2b7925dd3528265cab507ed202e205e856 Mon Sep 17 00:00:00 2001 From: tarsil Date: Mon, 29 Jul 2024 16:38:03 +0100 Subject: [PATCH] Release 0.10.5 --- docs/en/docs/release-notes.md | 6 ++++++ mongoz/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 4dcea23..50ac450 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -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 diff --git a/mongoz/__init__.py b/mongoz/__init__.py index 403d7bf..9c2b6a8 100644 --- a/mongoz/__init__.py +++ b/mongoz/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.4" +__version__ = "0.10.5" from .conf import settings from .conf.global_settings import MongozSettings diff --git a/pyproject.toml b/pyproject.toml index 3e4fd0a..ecc15c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"