diff --git a/python/rapidgzip/CHANGELOG.md b/python/rapidgzip/CHANGELOG.md index b5f8eea8..458ae8b3 100644 --- a/python/rapidgzip/CHANGELOG.md +++ b/python/rapidgzip/CHANGELOG.md @@ -1,4 +1,12 @@ +# Version 0.13.2 built on 2024-04-22 + +## Fixes + + - Disable `vmsplice` usage on `-c`/`--stdout` because it can result in wrong output if rapidgzip quits before + all of the splice output has been read from stdin of the piped to process. + + # Version 0.13.1 built on 2024-03-25 ## Fixes diff --git a/python/rapidgzip/setup.cfg b/python/rapidgzip/setup.cfg index f86809e3..a3e05ceb 100644 --- a/python/rapidgzip/setup.cfg +++ b/python/rapidgzip/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rapidgzip -version = 0.13.1 +version = 0.13.2 description = Parallel random access to gzip files url = https://github.com/mxmlnkn/rapidgzip diff --git a/src/rapidgzip/rapidgzip.hpp b/src/rapidgzip/rapidgzip.hpp index dfaddcfe..57d723eb 100644 --- a/src/rapidgzip/rapidgzip.hpp +++ b/src/rapidgzip/rapidgzip.hpp @@ -12,7 +12,7 @@ #define RAPIDGZIP_VERSION_MAJOR 0 #define RAPIDGZIP_VERSION_MINOR 13 -#define RAPIDGZIP_VERSION_PATCH 1 +#define RAPIDGZIP_VERSION_PATCH 2 #define RAPIDGZIP_VERSION_FROM_SEMVER( a, b, c ) ( a * 0x10000 + b * 0x100 + c ) #define RAPIDGZIP_VERSION \ RAPIDGZIP_VERSION_FROM_SEMVER( RAPIDGZIP_VERSION_MAJOR, RAPIDGZIP_VERSION_MINOR, RAPIDGZIP_VERSION_PATCH )