Skip to content

Commit

Permalink
Prepare 0.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Jan 2, 2021
1 parent 1b3d09d commit 942b71a
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -18,6 +18,8 @@ matrix:
python: 3.7
- env: TOX_ENV=py38
python: 3.8
- env: TOX_ENV=py39
python: 3.9
# - env: TOX_ENV=pypy
# python: pypy
install: pip install -r requirements/testing.txt -r requirements/release.txt
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
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.12.4
------
2021-01-02

- Tested against Python 3.9.

0.12.3
------
2020-11-26
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -29,7 +29,7 @@ Optionally raises exceptions on non-existing TLDs or silently fails (if

Prerequisites
=============
- Python 3.6, 3.7 and 3.8
- Python 3.6, 3.7, 3.8 and 3.9.

`Support for Python 2.7 and 3.5`_ is available as well.

Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
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.12.4
------
2021-01-02

- Tested against Python 3.9.

0.12.3
------
2020-11-26
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -29,7 +29,7 @@ Optionally raises exceptions on non-existing TLDs or silently fails (if

Prerequisites
=============
- Python 3.6, 3.7 and 3.8
- Python 3.6, 3.7, 3.8 and 3.9.

`Support for Python 2.7 and 3.5`_ is available as well.

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
except:
readme = ''

version = '0.12.3'
version = '0.12.4'

py_where = './src'
py_package_dir = 'src'
Expand Down Expand Up @@ -44,6 +44,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
Expand Down
2 changes: 1 addition & 1 deletion src/tld/__init__.py
Expand Up @@ -9,7 +9,7 @@
)

__title__ = 'tld'
__version__ = '0.12.3'
__version__ = '0.12.4'
__author__ = 'Artur Barseghyan'
__copyright__ = '2013-2020 Artur Barseghyan'
__license__ = 'MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later'
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py{27,35,36,37,38}
py{27,35,36,37,38,39}

[testenv]
passenv = *
Expand Down

0 comments on commit 942b71a

Please sign in to comment.