Skip to content

Commit

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

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

0 comments on commit 1a147be

Please sign in to comment.