Skip to content

Commit 4742c7f

Browse files
authored
Release 0.8.0
1 parent d90fb5c commit 4742c7f

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

HISTORY.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
=========
33

4+
0.8.0 (2020-11-30)
5+
------------------
6+
7+
- Renamed the package on PyPI to ``brotlicffi``, all further updates will be
8+
published to the new package. Using the ``brotlipy`` is deprecated.
9+
- Changed the importable namespace from ``brotli`` to ``brotlicffi`` to no longer
10+
conflict with the ``Brotli`` PyPI package.
11+
- Added ``process()`` method to ``Compressor`` and ``Decompressor``.
12+
- Added ``is_finished()`` method to ``Decompressor``.
13+
414
0.7.0 (2017-05-30)
515
------------------
616

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def finalize_options(self):
7777

7878
setup(
7979
name="brotlicffi",
80-
version="0.7.0",
80+
version="0.8.0",
8181

8282
description="Python CFFI bindings to the Brotli library",
8383
long_description=long_description,

src/brotlicffi/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
decompress, Decompressor, compress, BrotliEncoderMode, DEFAULT_MODE,
55
Compressor, MODE_GENERIC, MODE_TEXT, MODE_FONT, error, Error
66
)
7+
8+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)