Skip to content

Commit edf587c

Browse files
committed
7.2.3
1 parent f40cc94 commit edf587c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

AdvancedHTMLParser/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from .exceptions import InvalidCloseException, MissedCloseException, HTMLValidationException, MultipleRootNodeException
1111
from .SpecialAttributes import StyleAttribute
1212

13-
__version__ = '7.2.2'
14-
__version_tuple__ = ('7', '2', '2')
15-
__int_version_tuple__ = (7, 2, 2)
13+
__version__ = '7.2.3'
14+
__version_tuple__ = ('7', '2', '3')
15+
__int_version_tuple__ = (7, 2, 3)
1616

1717
__all__ = ( 'AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection',
1818
'ValidatingAdvancedHTMLParser', 'MissedCloseException', 'InvalidCloseException', 'HTMLValidationException', 'MultipleRootNodeException',

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 7.2.3 - Sep 01 2017
2+
3+
- Work around some issues in python2 due to its piss-poor unicode implementation ( can be seen, for example, by using ↑ as a value in a tag ). For proper unicode support you should use python3, but this at least makes python2 more on-par with python3.
4+
15
* 7.2.2 - Aug 07 2017
26

37
- Link through dot-access the "target" attribute on anchor "a" tags, and "selected" for option "option" tags.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
long_description = summary
3939

4040
setup(name='AdvancedHTMLParser',
41-
version='7.2.2',
41+
version='7.2.3',
4242
packages=['AdvancedHTMLParser'],
4343
scripts=['formatHTML'],
4444
author='Tim Savannah',

0 commit comments

Comments
 (0)