Skip to content

Commit

Permalink
[version] Bump rapidgzip version to 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Jan 8, 2024
1 parent fd11958 commit 51502c6
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.12.1 built on 2024-01-08

## Fixes

- Fix segmentation fault from rpmalloc because `rpmalloc_thread_initialize` was not called because
the `static thread_local` global variable was not initialized at all because it was never used.


# Version 0.12.0 built on 2024-01-07

## Added
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.12.0
version = 0.12.1

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 12
#define RAPIDGZIP_VERSION_PATCH 0
#define RAPIDGZIP_VERSION_PATCH 1
#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 51502c6

Please sign in to comment.