Skip to content

Commit

Permalink
[version] Bump rapidgzip version to 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Jan 6, 2024
1 parent c15259f commit 393f533
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 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.11.2 built on 2024-01-06

## Fixes

- Fix segfault with rpmalloc when creating a ParallelGzipReader object on one thread and using it into
another thread created manually in Python.


# Version 0.11.1 built on 2023-12-22

## 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 @@ -687,4 +687,4 @@ def ibzip2_cli():
PyBuffer_Release(&buffer)


__version__ = '0.11.1'
__version__ = '0.11.2'
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.11.1
version = 0.11.2

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 @@ -251,7 +251,7 @@ rapidgzipCLI( int argc,

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

Expand Down

0 comments on commit 393f533

Please sign in to comment.