diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c267ce1..12700a4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,12 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.11.10 +------ +2020-02-05 + +- Python 2.7 and 3.5 fixes. + 0.11.9 ------ 2019-12-16 diff --git a/docs/changelog.rst b/docs/changelog.rst index c267ce1..12700a4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,6 +15,12 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.11.10 +------ +2020-02-05 + +- Python 2.7 and 3.5 fixes. + 0.11.9 ------ 2019-12-16 diff --git a/setup.py b/setup.py index 694cfbc..9450452 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ except: readme = '' -version = '0.11.9' +version = '0.11.10' py_where = './src' py_package_dir = 'src' @@ -76,6 +76,7 @@ license='MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later', install_requires=[ 'six;python_version<="3.5"', # Used in Python 2.7 and 3.5 dist + 'typing;python_version<"3.5"', # Used in Python < 3.5 dist 'backports.functools-lru-cache;python_version<"3.5"', # For Python 2.7 ], test_suite='tld.tests', diff --git a/src/tld/__init__.py b/src/tld/__init__.py index b10f064..8ecc95e 100644 --- a/src/tld/__init__.py +++ b/src/tld/__init__.py @@ -9,7 +9,7 @@ ) __title__ = 'tld' -__version__ = '0.11.9' +__version__ = '0.11.10' __author__ = 'Artur Barseghyan' __copyright__ = '2013-2019 Artur Barseghyan' __license__ = 'MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later'