From 71283fd738f03b06f0347a1515bc34c96de575ae Mon Sep 17 00:00:00 2001 From: Markus Siemens Date: Sat, 17 Jul 2021 10:34:14 +0200 Subject: [PATCH] chore: release version 4.5.1 --- docs/changelog.rst | 6 ++++++ pyproject.toml | 2 +- tinydb/version.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 919757c6..6d131290 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -12,6 +12,12 @@ unreleased - *nothing yet* +v4.5.1 (2021-07-17) +^^^^^^^^^^^^^^^^^^^ + +- Fix: Correctly install ``typing-extensions`` on Python 3.7 + (see `issue 413 `__) + v4.5.0 (2021-06-25) ^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 00698a85..55cbe6fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.5.0" +version = "4.5.1" 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 330025d8..ef6eca30 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.5.0' +__version__ = '4.5.1'