Skip to content

Commit

Permalink
[version] Bump rapidgzip version to 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed May 21, 2024
1 parent 13faa5b commit e3b7868
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions python/rapidgzip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/rapidgzip/setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/rapidgzip/rapidgzip.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
Expand Down

0 comments on commit e3b7868

Please sign in to comment.