aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2016-09-09 12:32:20 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2016-09-09 12:32:20 +0200
commitb2641968dd0d03c8709b994b4c0f32b394862cff (patch)
tree4438427b9501d14f8a47a15e3c49b02b23110b28
parentcf7f1781002658405e889a5e53854b0e15334bcf (diff)
downloadplatform_external_python_ipaddress-b2641968dd0d03c8709b994b4c0f32b394862cff.tar.gz
platform_external_python_ipaddress-b2641968dd0d03c8709b994b4c0f32b394862cff.tar.bz2
platform_external_python_ipaddress-b2641968dd0d03c8709b994b4c0f32b394862cff.zip
release 1.0.17
-rw-r--r--ipaddress.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ipaddress.py b/ipaddress.py
index 42d2423..9cf71a7 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
import itertools
import struct
-__version__ = '1.0.16'
+__version__ = '1.0.17'
# Compatibility functions
_compat_int_types = (int,)
diff --git a/setup.py b/setup.py
index ec4e0b8..df060d3 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
settings = {
'name': 'ipaddress',
- 'version': '1.0.16',
+ 'version': '1.0.17',
'description': 'IPv4/IPv6 manipulation library',
'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
'author': 'Philipp Hagemeister',