From 3bd0a62105e5bcb8e0952136c96cd47e4e50f9b9 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Mon, 23 Dec 2013 14:59:53 +0000 Subject: [PATCH 1/3] Add changelog for recently changed things. --- CHANGES.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 0fcc12ee..61af811e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,18 @@ Change Log ---------- +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 ~~~~ From b1b1f940f5c8b96dcd128f858755a64a01af3577 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Mon, 23 Dec 2013 15:00:40 +0000 Subject: [PATCH 2/3] Drop -dev from version number for release --- html5lib/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html5lib/__init__.py b/html5lib/__init__.py index 0a43c066..19a4b7d6 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.999" diff --git a/setup.py b/setup.py index 598cbcf2..4a7a9c44 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.999', url='https://github.com/html5lib/html5lib-python', license="MIT License", description='HTML parser based on the WHATWG HTML specifcation', From c36197d01779cbb48d66563cf149af202ba6b7fc Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Mon, 23 Dec 2013 15:02:07 +0000 Subject: [PATCH 3/3] And back to dev for 0.9999. --- CHANGES.rst | 8 ++++++++ html5lib/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 61af811e..1431b3c9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Change Log ---------- +0.9999 +~~~~~~ + +Released on XXX, 2014 + +* XXX + + 0.999 ~~~~~ diff --git a/html5lib/__init__.py b/html5lib/__init__.py index 19a4b7d6..a67a652b 100644 --- a/html5lib/__init__.py +++ b/html5lib/__init__.py @@ -20,4 +20,4 @@ __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", "getTreeWalker", "serialize"] -__version__ = "0.999" +__version__ = "0.9999-dev" diff --git a/setup.py b/setup.py index 4a7a9c44..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', + version='0.9999-dev', url='https://github.com/html5lib/html5lib-python', license="MIT License", description='HTML parser based on the WHATWG HTML specifcation',