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 "]