aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2017-01-11 13:29:24 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2017-01-11 13:29:24 +0100
commit4233f21f1b461899820626d493a8ad031d0e6fc7 (patch)
tree3609f435c78ad25c6d033250d7ca708bc17d513a
parentcb3f84045111028d95d5d3110d7c5a09ac396526 (diff)
downloadipaddress-4233f21f1b461899820626d493a8ad031d0e6fc7.tar.gz
release 1.0.18
-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 d7cb337..f602c71 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
import itertools
import struct
-__version__ = '1.0.17'
+__version__ = '1.0.18'
# Compatibility functions
_compat_int_types = (int,)
diff --git a/setup.py b/setup.py
index 4af384f..7a548a1 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
settings = {
'name': 'ipaddress',
- 'version': '1.0.17',
+ 'version': '1.0.18',
'description': 'IPv4/IPv6 manipulation library',
'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
'author': 'Philipp Hagemeister',