diff --git a/python/rapidgzip/CHANGELOG.md b/python/rapidgzip/CHANGELOG.md index 1683b147..b616269a 100644 --- a/python/rapidgzip/CHANGELOG.md +++ b/python/rapidgzip/CHANGELOG.md @@ -1,4 +1,18 @@ +# Version 0.14.3 built on 2024-10-14 + +## Fixes + + - Some subchunks were post-processed on the main thread. + - Only show warning about possibly slower decompression for parallelized usage. + - Detect EOF when seeking forward to the end of the file. + - Do not complain about index not being kept after importing one. + - Apply `--quiet` to some non-fatal warnings. + - Warn when specifying multiple output file paths. + - Update dependencies: zlib: 1.3.0->1.3.1, rpmalloc: 1.4.5, cxxopts: 3.2.1. + - Remove warning about useless index import followed by export because it can convert now. + + # Version 0.14.2 built on 2024-05-22 ## Fixes diff --git a/python/rapidgzip/pyproject.toml b/python/rapidgzip/pyproject.toml index 337db1b4..19024388 100644 --- a/python/rapidgzip/pyproject.toml +++ b/python/rapidgzip/pyproject.toml @@ -16,7 +16,7 @@ build-backend = "setuptools.build_meta" [project] name = "rapidgzip" -version = "0.14.2" +version = "0.14.3" description = "Parallel random access to gzip files" authors = [{name = "Maximilian Knespel", email = "mxmlnkn@github.de"}] license = {text = "MIT"} diff --git a/src/rapidgzip/rapidgzip.hpp b/src/rapidgzip/rapidgzip.hpp index 30a6efd5..cd771673 100644 --- a/src/rapidgzip/rapidgzip.hpp +++ b/src/rapidgzip/rapidgzip.hpp @@ -13,7 +13,7 @@ static constexpr uint32_t RAPIDGZIP_VERSION_MAJOR{ 0 }; static constexpr uint32_t RAPIDGZIP_VERSION_MINOR{ 14 }; -static constexpr uint32_t RAPIDGZIP_VERSION_PATCH{ 2 }; +static constexpr uint32_t RAPIDGZIP_VERSION_PATCH{ 3 }; static constexpr uint32_t RAPIDGZIP_VERSION{ RAPIDGZIP_VERSION_MAJOR * 0x10000UL + RAPIDGZIP_VERSION_MINOR * 0x100UL + RAPIDGZIP_VERSION_PATCH };