Skip to content

Commit 09bc2ff

Browse files
committed
Bump to 8.1.5, and change copyright notice in __init__ to be a docstring
1 parent e131583 commit 09bc2ff

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

AdvancedHTMLParser/__init__.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2015, 2016, 2017, 2018 Tim Savannah All Rights Rserved under LGPLv3. See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
3-
#
4-
# See: https://github.com/kata198/AdvancedHTMLParser for full information
2+
'''
3+
Copyright (c) 2015, 2016, 2017, 2018, 2019 Tim Savannah All Rights Rserved under LGPLv3. See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
4+
5+
See: https://github.com/kata198/AdvancedHTMLParser for full information
6+
'''
57

68

79
#
@@ -14,9 +16,9 @@
1416
from .exceptions import InvalidCloseException, MissedCloseException, HTMLValidationException, MultipleRootNodeException
1517
from .SpecialAttributes import StyleAttribute
1618

17-
__version__ = '8.1.4'
18-
__version_tuple__ = ('8', '1', '4')
19-
__int_version_tuple__ = (8, 1, 4)
19+
__version__ = '8.1.5'
20+
__version_tuple__ = ('8', '1', '5')
21+
__int_version_tuple__ = (8, 1, 5)
2022

2123
__all__ = ( 'AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection',
2224
'ValidatingAdvancedHTMLParser', 'MissedCloseException', 'InvalidCloseException', 'HTMLValidationException', 'MultipleRootNodeException',

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

0 commit comments

Comments
 (0)