Skip to content

Commit

Permalink
[version] Bump rapidgzip version to 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Oct 14, 2024
1 parent 1a50d69 commit 7b3356e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions python/rapidgzip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/rapidgzip/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
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{ 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
};
Expand Down

0 comments on commit 7b3356e

Please sign in to comment.