Skip to content

Commit

Permalink
Prepare 0.11.10
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 5, 2020
1 parent 8c6dc96 commit 8adb8ed
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
except:
readme = ''

version = '0.11.9'
version = '0.11.10'

py_where = './src'
py_package_dir = 'src'
Expand Down Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/tld/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 8adb8ed

Please sign in to comment.