From ad63e2e670b02ac1e9ed7f3130f6de53ec8d5bce Mon Sep 17 00:00:00 2001 From: Markus Siemens Date: Mon, 7 Oct 2024 20:10:44 +0200 Subject: [PATCH] chore: release version v4.8.1 --- docs/changelog.rst | 8 ++++++++ pyproject.toml | 2 +- tinydb/version.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 4e4ff65b..7fa8263a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -24,6 +24,14 @@ unreleased - *nothing yet* +v4.8.0 (2024-10-07) +^^^^^^^^^^^^^^^^^^^ + +- Feature: Allow persisting empty tables + (see `pull request 518 `_). +- Fix: Make replacing ``doc_id`` type work properly + (see `issue 545 `_). + v4.8.0 (2023-06-12) ^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 80adc451..bc81599e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tinydb" -version = "4.8.0" +version = "4.8.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 0d53216d..ec5ed27c 100644 --- a/tinydb/version.py +++ b/tinydb/version.py @@ -1 +1 @@ -__version__ = '4.8.0' +__version__ = '4.8.1'