From 808f78d2f853a9c1e8e657a936c324c69f606850 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Mon, 22 Jul 2013 16:25:15 +0100 Subject: [PATCH 1/3] Bump version number to 1.0b3. --- 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 1f720cb3..ff5c7755 100644 --- a/html5lib/__init__.py +++ b/html5lib/__init__.py @@ -20,4 +20,4 @@ __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", "getTreeWalker", "serialize"] -__version__ = "1.0b2" +__version__ = "1.0b3" diff --git a/setup.py b/setup.py index 90a97ab1..f7d33999 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ long_description = readme_file.read() + '\n' + changes_file.read() setup(name='html5lib', - version='1.0b2', + version='1.0b3', url='https://github.com/html5lib/html5lib-python', license="MIT License", description='HTML parser based on the WHATWG HTML specifcation', From b439d93f8ee9fcd5b61b292ddf53fef89450fce0 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Mon, 22 Jul 2013 16:25:38 +0100 Subject: [PATCH 2/3] Add changelog for 1.0b3 (uh, this ought to be have done before). --- CHANGES.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 48bcb8c5..782536c9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,21 @@ Change Log ---------- +1.0b3 +~~~~~ + +Released on July 22, 2013 + +* Removed ``RecursiveTreeWalker`` from ``treewalkers._base``. Any + implementation using it should be moved to + ``NonRecursiveTreeWalker``, as everything bundled with html5lib has + for years. + +* Fix #67 so that ``BufferedStream`` to correctly returns a bytes + object, thereby fixing any case where html5lib is passed a + non-seekable RawIOBase-like object. + + 1.0b2 ~~~~~ From 4f492b6865bc58cd336a8a6eab02c3bfad706b79 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Mon, 22 Jul 2013 16:27:44 +0100 Subject: [PATCH 3/3] Bump version to 1.0b4 --- 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 ff5c7755..50cb82c9 100644 --- a/html5lib/__init__.py +++ b/html5lib/__init__.py @@ -20,4 +20,4 @@ __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", "getTreeWalker", "serialize"] -__version__ = "1.0b3" +__version__ = "1.0b4" diff --git a/setup.py b/setup.py index f7d33999..60ab76c4 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ long_description = readme_file.read() + '\n' + changes_file.read() setup(name='html5lib', - version='1.0b3', + version='1.0b4', url='https://github.com/html5lib/html5lib-python', license="MIT License", description='HTML parser based on the WHATWG HTML specifcation',