Skip to content

Commit 9c390ee

Browse files
committed
9.0.2
1 parent a90fc6c commit 9c390ee

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

AdvancedHTMLParser/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright (c) 2015, 2016, 2017, 2018, 2019 Tim Savannah All Rights Rserved under LGPLv3. All Rights Reserved.
2+
Copyright (c) 2015, 2016, 2017, 2018, 2019, 2023 Tim Savannah All Rights Rserved under LGPLv3. All Rights Reserved.
33
44
55
See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
@@ -18,9 +18,9 @@
1818
from .exceptions import InvalidCloseException, MissedCloseException, HTMLValidationException, MultipleRootNodeException
1919
from .SpecialAttributes import StyleAttribute
2020

21-
__version__ = '9.0.1'
22-
__version_tuple__ = ('9', '0', '1')
23-
__int_version_tuple__ = (9, 0, 1)
21+
__version__ = '9.0.2'
22+
__version_tuple__ = ('9', '0', '2')
23+
__int_version_tuple__ = (9, 0, 2)
2424

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

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

0 commit comments

Comments
 (0)