Skip to content

Commit

Permalink
prepare 0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Oct 30, 2019
1 parent fda058a commit 4b8f06f
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ matrix:
python: 3.6
- env: TOX_ENV=py37
python: 3.7
- env: TOX_ENV=py38
python: 3.8
- env: TOX_ENV=pypy
python: pypy
install: pip install -r requirements/testing.txt
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.9.7
-----
2019-10-30

.. note::

This release is dedicated to my newborn daughter. Happy birthday, my dear
Ani.

- Handling urls that are only a TLD.
- Accepts already splitted URLs.
- Tested against Python 3.8.

0.9.6
-----
2019-09-12
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Optionally raises exceptions on non-existing TLDs or silently fails (if

Prerequisites
=============
- Python 2.7, 3.4, 3.5, 3.6, 3.7 and PyPy
- Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8 and PyPy

Documentation
=============
Expand Down
2 changes: 1 addition & 1 deletion TODOS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ be worked on.

Must haves
==========
- PyPy support.
+ PyPy support.

Should haves
============
Expand Down
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.9.7
-----
2019-10-30

.. note::

This release is dedicated to my newborn daughter. Happy birthday, my dear
Ani.

- Handling urls that are only a TLD.
- Accepts already splitted URLs.
- Tested against Python 3.8.

0.9.6
-----
2019-09-12
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Optionally raises exceptions on non-existing TLDs or silently fails (if

Prerequisites
=============
- Python 2.7, 3.4, 3.5, 3.6, 3.7 and PyPy
- Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8 and PyPy

Documentation
=============
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
except:
readme = ''

version = '0.9.6'
version = '0.9.7'

setup(
name='tld',
version=version,
description="Extract the top level domain (TLD) from the URL given.",
description="Extract the top-level domain (TLD) from the URL given.",
long_description=readme,
classifiers=[
"Programming Language :: Python",
Expand All @@ -21,6 +21,7 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
Expand All @@ -31,7 +32,7 @@
"License :: OSI Approved :: GNU Lesser General Public License v2 or "
"later (LGPLv2+)",
],
keywords='tld, top level domain names, python',
keywords='tld, top-level domain names, python',
author='Artur Barseghyan',
author_email='artur.barseghyan@gmail.com',
url='https://github.com/barseghyanartur/tld',
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.9.6'
__version__ = '0.9.7'
__author__ = 'Artur Barseghyan'
__copyright__ = '2013-2019 Artur Barseghyan'
__license__ = 'MPL-1.1 OR GPL-2.0-only OR LGPL-2.0-or-later'
Expand Down
6 changes: 3 additions & 3 deletions src/tld/res/effective_tld_names.dat.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ it
gov.it
edu.it
// Reserved geo-names (regions and provinces):
// http://www.nic.it/sites/default/files/docs/Regulation_assignation_v7.1.pdf
// https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
// Regions
abr.it
abruzzo.it
Expand Down Expand Up @@ -7078,7 +7078,7 @@ org.zw

// newGTLDs

// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2019-10-24T16:58:26Z
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2019-10-29T17:00:12Z
// This list is auto-generated, don't edit it manually.
// aaa : 2015-02-26 American Automobile Association, Inc.
aaa
Expand Down Expand Up @@ -8337,7 +8337,7 @@ gmail
// gmbh : 2016-01-29 Binky Moon, LLC
gmbh

// gmo : 2014-01-09 GMO Internet Pte. Ltd.
// gmo : 2014-01-09 GMO Internet, Inc.
gmo

// gmx : 2014-04-24 1&1 Mail & Media GmbH
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,34,35,36,37,py}
envlist = py{27,34,35,36,37,38,py}

[testenv]
passenv = *
Expand Down

0 comments on commit 4b8f06f

Please sign in to comment.