Skip to content

Commit 4ddd68d

Browse files
committed
7.0.2
1 parent a4022f1 commit 4ddd68d

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
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
1111
from .SpecialAttributes import StyleAttribute
1212

13-
__version__ = '7.0.1'
14-
__version_tuple__ = ('7', '0', '1')
15-
__int_version_tuple__ = (7, 0, 1)
13+
__version__ = '7.0.2'
14+
__version_tuple__ = ('7', '0', '2')
15+
__int_version_tuple__ = (7, 0, 2)
1616

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

ChangeLog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
* 7.0.1 Apr 28 2017
1+
* 7.0.2 Apr 28 2017
22

33
- Fix two typos which would result in exceptions
4+
- Add "href" as a standard property name for anchors (so em.href = 'abc' sets
5+
the href attribute)
46

57
* 7.0.0 Apr 6 2017
68
- Add "filter"-style functions (think ORM-style filtering, like

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.0.1',
41+
version='7.0.2',
4242
packages=['AdvancedHTMLParser'],
4343
scripts=['formatHTML'],
4444
author='Tim Savannah',

0 commit comments

Comments
 (0)