From 0f49e53b8f7120e0b082a3ad476a03d38f182e70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Kr=C3=B6ker?= Date: Thu, 10 Nov 2022 10:45:38 +0100 Subject: [PATCH] bump version --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0bedaf3..43648ee 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ DictDataBase is a simple and fast database for handling json or compressed json - **No database server** required. Simply import DictDataBase in your project and use it. - **Compression**. Configure if the files should be stored as raw json or as json compressed with zlib. - **Fast**. A dict can be accessed partially without having to parse the entire file, making the read and writes very efficient. -- **Tested**. 100% coverage, over 1000 test cases. +- **Tested**. 99%+ coverage, over 1000 test cases. ### Why use DictDataBase - For example, have a webserver dispatch database reads and writes concurrently. diff --git a/pyproject.toml b/pyproject.toml index 9dd55ea..752b0d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dictdatabase" -version = "2.3.1" +version = "2.3.2" repository = "https://github.com/mkrd/DictDataBase" description = "Easy-to-use database using dicts" authors = ["Marcel Kröker "]