Skip to content

Commit a8b38e2

Browse files
committed
Tag 6.6.0
1 parent 4eb09b1 commit a8b38e2

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

AdvancedHTMLParser/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
from .Validator import ValidatingAdvancedHTMLParser
1010
from .exceptions import InvalidCloseException, MissedCloseException, HTMLValidationException
1111

12-
__version__ = '6.5.1'
13-
__version_tuple__ = ('6', '5', '1')
14-
__int_version_tuple__ = (6, 5, 1)
12+
__version__ = '6.6.0'
13+
__version_tuple__ = ('6', '6', '0')
14+
__int_version_tuple__ = (6, 6, 0)
1515

1616
__all__ = ['AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection'
1717
'ValidatingAdvancedHTMLParser', 'MissedCloseException', 'InvalidCloseException', 'HTMLValidationException' ]

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
* 6.6.0 Jul 25 2016
2+
- In a multiple root node scenario, make sure getHTML returns text that falls
3+
between the root nodes.
4+
- Retain text, comments, etc that occur before and after the root node
5+
- Update runTests.py to be latest from GoodTests -- allows providing arguments
6+
to GoodTests.py (by passing them to runTests.py) and removes the need for the
7+
symlink in the "tests" directory (which duplicates source in the dist)
8+
19
* 6.5.1 Mar 23 2016
210
- Merge in patch by "Tai Kedzierski" which fixes a typo in getElementsByAttr. Thanks!
311
- Fix missing files in MANIFEST.in

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
long_description = summary
2727

2828
setup(name='AdvancedHTMLParser',
29-
version='6.5.1',
29+
version='6.6.0',
3030
packages=['AdvancedHTMLParser'],
3131
scripts=['formatHTML'],
3232
author='Tim Savannah',

0 commit comments

Comments
 (0)