Skip to content

Commit f32e5a1

Browse files
committed
8.1.0
1 parent ab08e26 commit f32e5a1

File tree

2 files changed

+5
-5
lines changed

2 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__ = '8.0.1'
14-
__version_tuple__ = ('8', '0', '1')
15-
__int_version_tuple__ = (8, 0, 1)
13+
__version__ = '8.1.0'
14+
__version_tuple__ = ('8', '1', '0')
15+
__int_version_tuple__ = (8, 1, 0)
1616

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Copyright (c) 2015, 2016, 2017 Timothy Savannah under terms of LGPLv3.
3+
# Copyright (c) 2015, 2016, 2017, 2018 Timothy Savannah under terms of LGPLv3.
44
# You should have received a copy of this with this distribution as "LICENSE"
55
#
66
# NOTE: - If you pass --no-deps, you can get a standalone install of AdvancedHTMLParser
@@ -38,7 +38,7 @@
3838
long_description = summary
3939

4040
setup(name='AdvancedHTMLParser',
41-
version='8.0.1',
41+
version='8.1.0',
4242
packages=['AdvancedHTMLParser'],
4343
scripts=['formatHTML'],
4444
author='Tim Savannah',

0 commit comments

Comments
 (0)