Skip to content

Commit

Permalink
[version] Bump version to 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Dec 22, 2023
1 parent f404a8a commit 59b2023
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions python/rapidgzip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

# Version 0.11.1 built on 2023-12-22

## Fixes

- Fix possible GIL deadlock when calling many `RapidgzipFile` methods in quick succession.


# Version 0.11.0 built on 2023-12-19

## Added
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.0'
__version__ = '0.11.1'
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.0
version = 0.11.1

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.0.\n";
<< "version 0.11.1.\n";
return 0;
}

Expand Down

0 comments on commit 59b2023

Please sign in to comment.