Version increment (1.1.0)

This commit is contained in:
secynic 2019-02-01 18:13:28 -06:00
parent 3c0f8ff586
commit d349b4a580
5 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,8 @@
Changelog
=========
1.1.0 (TBD)
-----------
1.1.0 (2019-02-01)
------------------
- Exceptions now inherit a new BaseIpwhoisException rather than Exception
(#205 - Darkheir)

View File

@ -26,4 +26,4 @@ from .exceptions import *
from .net import Net
from .ipwhois import IPWhois
__version__ = '1.0.0'
__version__ = '1.1.0'

View File

@ -67,9 +67,9 @@ copyright = '2013-2017, Philip Hane'
# built documents.
#
# The short X.Y version.
version = '1.0.0'
version = '1.1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.1.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -223,7 +223,7 @@ class Net:
"""
Temporary wrapper for IP ASN lookups (moved to
asn.IPASN.lookup()). This will be removed in a future
release (1.0.0).
release.
"""
from warnings import warn

View File

@ -4,7 +4,7 @@ from setuptools import setup
import io
NAME = 'ipwhois'
VERSION = '1.0.0'
VERSION = '1.1.0'
AUTHOR = 'Philip Hane'
AUTHOR_EMAIL = 'secynic@gmail.com'
DESCRIPTION = 'Retrieve and parse whois data for IPv4 and IPv6 addresses.'