diff --git a/docs/changelog.rst b/docs/changelog.rst index 44cff07f..ac9c95ba 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -24,6 +24,18 @@ unreleased - *nothing yet* +v4.7.0 (2022-02-19) +^^^^^^^^^^^^^^^^^^^ + +- Feature: Allow inserting ``Document`` instances using ``Table.insert_multiple`` + (see `pull request 455 `_). +- Performance: Only convert document IDs of a table when returning documents. + This improves performance the ``Table.count`` and ``Table.get`` operations + and also for ``Table.search`` when only returning a few documents + (see `pull request 460 `_). +- Internal change: Run all ``Table`` tests ``JSONStorage`` in addition to + ``MemoryStorage``. + v4.6.1 (2022-01-18) ^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 2c1aa416..af8a9d1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.6.1" +version = "4.7.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 e893b1fc..372a5079 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.6.1' +__version__ = '4.7.0'