diff --git a/CHANGES.rst b/CHANGES.rst index 0fcc12ee..1431b3c9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,26 @@ Change Log ---------- +0.9999 +~~~~~~ + +Released on XXX, 2014 + +* XXX + + +0.999 +~~~~~ + +Released on December 23, 2013 + +* Fix #127: add work-around for CPython issue #20007: .read(0) on + http.client.HTTPResponse drops the rest of the content. + +* Fix #115: lxml treewalker can now deal with fragments containing, at + their root level, text nodes with non-ASCII characters on Python 2. + + 0.99 ~~~~ diff --git a/html5lib/__init__.py b/html5lib/__init__.py index 0a43c066..a67a652b 100644 --- a/html5lib/__init__.py +++ b/html5lib/__init__.py @@ -20,4 +20,4 @@ __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", "getTreeWalker", "serialize"] -__version__ = "0.999-dev" +__version__ = "0.9999-dev" diff --git a/setup.py b/setup.py index 598cbcf2..f75910ea 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ long_description = readme_file.read() + '\n' + changes_file.read() setup(name='html5lib', - version='0.999-dev', + version='0.9999-dev', url='https://github.com/html5lib/html5lib-python', license="MIT License", description='HTML parser based on the WHATWG HTML specifcation',