aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-12-28 18:09:41 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-12-28 18:09:41 +0100
commit77c528007b90de88068df498726c574e8a86f497 (patch)
tree02f483a0fc689e4925ba497d183d6ef002998c3e
parente354b788a3979bd1859311c2d5fccab3cd6ef23c (diff)
downloadipaddress-77c528007b90de88068df498726c574e8a86f497.tar.gz
releae 1.0.16
-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 27f0026..7657fc8 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
import itertools
import struct
-__version__ = '1.0.15'
+__version__ = '1.0.16'
# Compatibility functions
_compat_int_types = (int,)
diff --git a/setup.py b/setup.py
index 6e4da4f..ec4e0b8 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
settings = {
'name': 'ipaddress',
- 'version': '1.0.15',
+ 'version': '1.0.16',
'description': 'IPv4/IPv6 manipulation library',
'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
'author': 'Philipp Hagemeister',