From 10644a0e07ad180c5b756aba272ee6b0dbd12df8 Mon Sep 17 00:00:00 2001 From: Markus Siemens Date: Sat, 12 Oct 2024 17:22:46 +0200 Subject: [PATCH] chore: release version v4.8.2 --- docs/changelog.rst | 8 +++++++- pyproject.toml | 2 +- tinydb/version.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 6050f616..84d78026 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -24,7 +24,13 @@ unreleased - *nothing yet* -v4.8.1 +v4.8.2 (2024-10-12) +^^^^^^^^^^^^^^^^^^^ + +- Fix: Correctly update query cache when search results have changed + (see `issue 560 `_). + +v4.8.1 (2024-10-07) ^^^^^^^^^^^^^^^^^^^ - Feature: Allow persisting empty tables diff --git a/pyproject.toml b/pyproject.toml index bc81599e..1cd4da1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.8.1" +version = "4.8.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 ec5ed27c..29fd62a7 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.8.1' +__version__ = '4.8.2'