diff --git a/python/rapidgzip/CHANGELOG.md b/python/rapidgzip/CHANGELOG.md index c5769007..cc970e35 100644 --- a/python/rapidgzip/CHANGELOG.md +++ b/python/rapidgzip/CHANGELOG.md @@ -1,4 +1,11 @@ +# Version 0.14.1 built on 2024-05-22 + +## Fixes + + - Fix error when reading from stdin. + + # Version 0.14.0 built on 2024-05-22 ## Added diff --git a/python/rapidgzip/setup.cfg b/python/rapidgzip/setup.cfg index 13c52fc1..649e4e34 100644 --- a/python/rapidgzip/setup.cfg +++ b/python/rapidgzip/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rapidgzip -version = 0.14.0 +version = 0.14.1 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 e622b63e..6134ce62 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{ 0 }; +static constexpr uint32_t RAPIDGZIP_VERSION_PATCH{ 1 }; static constexpr uint32_t RAPIDGZIP_VERSION{ RAPIDGZIP_VERSION_MAJOR * 0x10000UL + RAPIDGZIP_VERSION_MINOR * 0x100UL + RAPIDGZIP_VERSION_PATCH };