Skip to content

Commit 8e0b2be

Browse files
committed
re-tag 8.1.7 as 8.1.8 due to github release issue
1 parent d1c1279 commit 8e0b2be

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

AdvancedHTMLParser/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
from .exceptions import InvalidCloseException, MissedCloseException, HTMLValidationException, MultipleRootNodeException
1919
from .SpecialAttributes import StyleAttribute
2020

21-
__version__ = '8.1.7'
22-
__version_tuple__ = ('8', '1', '7')
23-
__int_version_tuple__ = (8, 1, 7)
21+
__version__ = '8.1.8'
22+
__version_tuple__ = ('8', '1', '8')
23+
__int_version_tuple__ = (8, 1, 8)
2424

2525
__all__ = ( 'AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection',
2626
'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+
* 8.1.8 - Jul 22 2019
2+
3+
- Fix accidental re-release of 8.1.6 to github, bump version to signify
4+
15
* 8.1.7 - Jul 20 2019
26

37
- Update all forms of getElementsByClassName to support multiple classes in a single call, space-separated in a string, per update to spec.

doc/AdvancedHTMLParser.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<table width="100%" cellspacing="0" cellpadding="2" border="0" summary="heading" >
77
<tr bgcolor="#7799ee" >
88
<td valign="bottom" >&nbsp;<br />
9-
<font color="#ffffff" face="helvetica, arial" >&nbsp;<br /><big ><big ><strong >AdvancedHTMLParser</strong></big></big> (version 8.1.7)</font></td><td align="right" valign="bottom" ><font color="#ffffff" face="helvetica, arial" ><a href="AdvancedHTMLParser.html" >index</a></font></td></tr></table>
9+
<font color="#ffffff" face="helvetica, arial" >&nbsp;<br /><big ><big ><strong >AdvancedHTMLParser</strong></big></big> (version 8.1.8)</font></td><td align="right" valign="bottom" ><font color="#ffffff" face="helvetica, arial" ><a href="AdvancedHTMLParser.html" >index</a></font></td></tr></table>
1010
<p ><tt >Copyright&nbsp;(c)&nbsp;2015,&nbsp;2016,&nbsp;2017,&nbsp;2018,&nbsp;2019&nbsp;Tim&nbsp;Savannah&nbsp;All&nbsp;Rights&nbsp;Rserved&nbsp;under&nbsp;LGPLv3.&nbsp;All&nbsp;Rights&nbsp;Reserved.<br />
1111
&nbsp;<br />
1212
&nbsp;<br />
@@ -3344,6 +3344,6 @@
33443344

33453345
<tr ><td bgcolor="#55aa55" ><tt >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td >&nbsp;</td>
33463346
<td width="100%" ><strong >__all__</strong> = ('AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection', 'ValidatingAdvancedHTMLParser', 'MissedCloseException', 'InvalidCloseException', 'HTMLValidationException', 'MultipleRootNodeException', 'StyleAttribute', 'toggleAttributesDOM', 'isTextNode', 'isTagNode', 'AdvancedHTMLMiniFormatter', 'AdvancedHTMLSlimTagFormatter', 'AdvancedHTMLSlimTagMiniFormatter')<br />
3347-
<strong >__int_version_tuple__</strong> = (8, 1, 7)<br />
3348-
<strong >__version_tuple__</strong> = ('8', '1', '7')</td></tr></table>
3347+
<strong >__int_version_tuple__</strong> = (8, 1, 8)<br />
3348+
<strong >__version_tuple__</strong> = ('8', '1', '8')</td></tr></table>
33493349
</p></p></p></p></body></html>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
long_description = summary
4343

4444
setup(name='AdvancedHTMLParser',
45-
version='8.1.7',
45+
version='8.1.8',
4646
packages=['AdvancedHTMLParser'],
4747
scripts=['formatHTML'],
4848
author='Tim Savannah',

0 commit comments

Comments
 (0)