From f5fbfc20ff8d37fccb3136672ff8af339af0c7c8 Mon Sep 17 00:00:00 2001 From: mxmlnkn Date: Fri, 26 Apr 2024 22:09:30 +0200 Subject: [PATCH] [version] Bump rapidgzip version to 0.13.3 --- python/rapidgzip/CHANGELOG.md | 9 +++++++++ python/rapidgzip/setup.cfg | 2 +- src/rapidgzip/rapidgzip.hpp | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/python/rapidgzip/CHANGELOG.md b/python/rapidgzip/CHANGELOG.md index 458ae8b3..fd5d5b57 100644 --- a/python/rapidgzip/CHANGELOG.md +++ b/python/rapidgzip/CHANGELOG.md @@ -1,4 +1,13 @@ +# Version 0.13.3 built on 2024-04-26 + +## Fixes + + - Reading after seeking could fail in some cases because of a bug with the window compression. + - `RapidgzipFile` `verbose` parameter did not have any effect. + - Add newline after `--count` or `--count-lines` result. + + # Version 0.13.2 built on 2024-04-22 ## Fixes diff --git a/python/rapidgzip/setup.cfg b/python/rapidgzip/setup.cfg index a3e05ceb..0912aa9e 100644 --- a/python/rapidgzip/setup.cfg +++ b/python/rapidgzip/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rapidgzip -version = 0.13.2 +version = 0.13.3 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 57d723eb..b00cef43 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 2 +#define RAPIDGZIP_VERSION_PATCH 3 #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 )