Skip to content

Commit

Permalink
[version] Bump rapidgzip version to 0.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Feb 21, 2024
1 parent 1e75b8e commit 47de29d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions python/rapidgzip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

# Version 0.10.5 built on 2024-02-22

## Fixes

- Fix segfault with rpmalloc when creating a ParallelGzipReader object on one thread and using it into
another thread created manually in Python.
- Fix possible GIL deadlock when calling many `RapidgzipFile` methods in quick succession.
- Fix many issues with the GIL acquirement code logic.
- Avoid segfault when exporting the index for an empty, invalid gzip file.
- Use `isattay` instead of poll with 100ms timeout to determine whether rapidgzip is piped to.
- Fix build error on macOS when no wheel are available.


# Version 0.10.4 built on 2023-11-25

## Fixes
Expand Down
2 changes: 1 addition & 1 deletion python/rapidgzip/rapidgzip.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -337,4 +337,4 @@ def cli():
PyBuffer_Release(&buffer)


__version__ = '0.10.4'
__version__ = '0.10.5'
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.10.4
version = 0.10.5

description = Parallel random access to gzip files
url = https://github.com/mxmlnkn/rapidgzip
Expand Down
2 changes: 1 addition & 1 deletion src/tools/rapidgzip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ rapidgzipCLI( int argc, char** argv )

if ( parsedArgs.count( "version" ) > 0 ) {
std::cout << "rapidgzip, CLI to the parallelized, indexed, and seekable gzip decoding library rapidgzip "
<< "version 0.10.4.\n";
<< "version 0.10.5.\n";
return 0;
}

Expand Down

0 comments on commit 47de29d

Please sign in to comment.