Skip to content

Commit be4817a

Browse files
committed
Release 7.3.1
1 parent 5feefcb commit be4817a

File tree

3 files changed

+5
-5
lines changed

3 files changed

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

13-
__version__ = '7.3.0'
14-
__version_tuple__ = ('7', '3', '0')
15-
__int_version_tuple__ = (7, 3, 0)
13+
__version__ = '7.3.1'
14+
__version_tuple__ = ('7', '3', '1')
15+
__int_version_tuple__ = (7, 3, 1)
1616

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

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* 7.3.1 - ??? ?? ????
1+
* 7.3.1 - Nov 21 2017
22

33
- Update str(AdvancedTag) to give the real HTML representation (start tag,
44
inner html, and end tag) versus the former implementation which was: <start

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

0 commit comments

Comments
 (0)