Skip to content

Commit

Permalink
[version] Bump rapidgzip version to 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Apr 22, 2024
1 parent de39239 commit 4f54845
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions python/rapidgzip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.13.1
version = 0.13.2

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 @@ -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 )
Expand Down

0 comments on commit 4f54845

Please sign in to comment.