Skip to content

Commit 9b6a3f5

Browse files
committed
[version] Bump rapidgzip version to 0.7.0
1 parent 62bf9a1 commit 9b6a3f5

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

python/rapidgzip/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
# Version 0.7.0 built on 2023-06-04
3+
4+
- Rename pragzip to rapidgzip. See the About section in the Readme for some background.
5+
6+
27
# Version 0.6.0 built on 2023-05-30
38

49
## Added

python/rapidgzip/rapidgzip.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,4 +337,4 @@ def cli():
337337
PyBuffer_Release(&buffer)
338338

339339

340-
__version__ = '0.6.0'
340+
__version__ = '0.7.0'

python/rapidgzip/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = rapidgzip
3-
version = 0.6.0
3+
version = 0.7.0
44

55
description = Parallel random access to gzip files
66
url = https://github.com/mxmlnkn/rapidgzip

src/tools/rapidgzip.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ rapidgzipCLI( int argc, char** argv )
261261

262262
if ( parsedArgs.count( "version" ) > 0 ) {
263263
std::cout << "rapidgzip, CLI to the parallelized, indexed, and seekable gzip decoding library rapidgzip "
264-
<< "version 0.6.0.\n";
264+
<< "version 0.7.0.\n";
265265
return 0;
266266
}
267267

0 commit comments

Comments
 (0)