diff --git a/docs/changelog.rst b/docs/changelog.rst index e85dea30..a7df735d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -12,6 +12,14 @@ unreleased - *nothing here yet* +v4.3.0 (2020-11-14) +^^^^^^^^^^^^^^^^^^^ + +- Feature: Add operation for updating multiple documents: ``update_multiple`` + (see `issue 346 `_) +- Improvement: Expose type information for MyPy typechecking (PEP 561) + (see `pull request 352 `_) + v4.2.0 (2020-10-03) ^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 45b184f7..f5f38bb3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.2.0" +version = "4.3.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 ea5d65fc..5ee6158c 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.2.0' +__version__ = '4.3.0'