From b4e7be0a6e50aee4a4ac0108b191b33cd56a1398 Mon Sep 17 00:00:00 2001 From: PyYoshi Date: Tue, 25 Apr 2017 11:14:56 +0900 Subject: [PATCH] version 2.0.1 --- CHANGES.rst | 9 +++++++++ src/cchardet/version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index bba71c2..e7a12c0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ CHANGES ======= +2.0.1 (2017-04-25) +------------------ + +- fix an issue where UTF-8 with a BOM would not be detected as UTF-8-SIG (fix `#28`_) +- pass NULL Byte to feed() / detect() (fix `#27`_) + +.. _#28: https://github.com/PyYoshi/cChardet/issues/28 +.. _#27: https://github.com/PyYoshi/cChardet/issues/27 + 2.0.0 (2017-04-06) ------------------ diff --git a/src/cchardet/version.py b/src/cchardet/version.py index afced14..3f39079 100644 --- a/src/cchardet/version.py +++ b/src/cchardet/version.py @@ -1 +1 @@ -__version__ = '2.0.0' +__version__ = '2.0.1'