diff --git a/docs/changelog.rst b/docs/changelog.rst index 6d131290..8176cdb3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -12,6 +12,14 @@ unreleased - *nothing yet* +v4.5.2 (2021-09-23) +^^^^^^^^^^^^^^^^^^^ + +- Fix: Make ``Table.delete()``'s argument priorities consistent with + other table methods. This means that if you pass both ``cond`` as + well as ``doc_ids`` to ``Table.delete()``, the latter will be prefered + (see `issue 424 `__) + v4.5.1 (2021-07-17) ^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 55cbe6fb..ab18c8cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.5.1" +version = "4.5.2" description = "TinyDB is a tiny, document oriented database optimized for your happiness :)" authors = ["Markus Siemens "] license = "MIT" diff --git a/tinydb/version.py b/tinydb/version.py index ef6eca30..d04f92aa 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.5.1' +__version__ = '4.5.2'