diff --git a/docs/changelog.rst b/docs/changelog.rst index 2b26a089..62f3a497 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -24,6 +24,21 @@ unreleased - *nothing yet* +v4.6.0 (2022-01-17) +^^^^^^^^^^^^^^^^^^^ + +- Feature: Add `map()` query operation to apply a transformation + to a document or field when evaluating a query + (see `pull request 445 `_). + **Note**: This may break code that queries for a field named ``map`` + using the ``Query`` APIs property access syntax +- Feature: Add support for `typing-extensions `_ + v4 +- Documentation: Fix a couple of typos in the documentation (see + `pull request 446 `_, + `pull request 449 `_ and + `pull request 453 `_) + v4.5.2 (2021-09-23) ^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 95628b44..67e012b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.5.2" +version = "4.6.0" 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 d04f92aa..52fde385 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.5.2' +__version__ = '4.6.0'