Skip to content

Commit 5580a2c

Browse files
committed
Stable version number
1 parent 94b8701 commit 5580a2c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Changelog
77
.. This document is user facing. Please word the changes in such a way
88
.. that users understand how the changes affect the new version.
99
10-
version 0.7.0-dev
10+
version 0.7.0
1111
-----------------
1212
+ Remove workarounds in the ``igzip`` module for the ``unconsumed_tail``
1313
and ``unused_data`` bugs. ``igzip._IGzipReader`` now functions the same
@@ -20,7 +20,6 @@ version 0.7.0-dev
2020
``isal_zlib.Decompress`` objects.
2121
It works the same as in CPython's zlib now.
2222

23-
2423
version 0.6.1
2524
-----------------
2625
+ Fix a crash that occurs when opening a file that did not end in ``.gz`` while

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def build_isa_l():
152152

153153
setup(
154154
name="isal",
155-
version="0.7.0-dev",
155+
version="0.7.0",
156156
description="Faster zlib and gzip compatible compression and "
157157
"decompression by providing python bindings for the ISA-L "
158158
"library.",

src/isal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
"__version__"
4040
]
4141

42-
__version__ = "0.7.0-dev"
42+
__version__ = "0.7.0"

0 commit comments

Comments
 (0)