Skip to content

Commit 4ec62f7

Browse files
committed
Mark 8.9.9 as the beta release (final production will be 9.0.0, so will never be an 8.9)
1 parent 96c0974 commit 4ec62f7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
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.8'
22-
__version_tuple__ = ('8', '1', '8')
23-
__int_version_tuple__ = (8, 1, 8)
21+
__version__ = '8.9.9'
22+
__version_tuple__ = ('8', '9', '9')
23+
__int_version_tuple__ = (8, 9, 9)
2424

2525
__all__ = ( 'AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection',
2626
'ValidatingAdvancedHTMLParser', 'MissedCloseException', 'InvalidCloseException', 'HTMLValidationException', 'MultipleRootNodeException',

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
* 9.0.0 - ??? ?? ????
2+
* (8.9.9 - beta release 1)
23

34
- XPath engine. See new function "getElementsByXPathExpression" on parser,
45
tags, and tag collections.

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.8',
45+
version='8.9.9',
4646
packages=['AdvancedHTMLParser'],
4747
scripts=['formatHTML'],
4848
author='Tim Savannah',

0 commit comments

Comments
 (0)