Skip to content

Commit fd77384

Browse files
committed
6.6.3
1 parent aee4815 commit fd77384

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-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.6.2'
13-
__version_tuple__ = ('6', '6', '2')
14-
__int_version_tuple__ = (6, 6, 2)
12+
__version__ = '6.6.3'
13+
__version_tuple__ = ('6', '6', '3')
14+
__int_version_tuple__ = (6, 6, 3)
1515

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

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 6.6.3 Oct 03 2016
2+
- Fix no-value attributes not appearing in html output (like "checked" on an input). Was in attributes, but not in html output.
3+
14
* 6.6.2 Jul 27 2016
25
- Python's HTMLParser on python3 only automatically converts charrefs
36
(backwards incompatible...) -- so make it stop doing that. This allows things

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.6.2',
29+
version='6.6.3',
3030
packages=['AdvancedHTMLParser'],
3131
scripts=['formatHTML'],
3232
author='Tim Savannah',

0 commit comments

Comments
 (0)