aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2018-04-14 19:53:49 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2018-04-14 19:53:51 +0200
commit6b68a95f1b0ad62baf22578ede4b97d1c93f11f0 (patch)
tree2f06b298a23f04dd063a708a8ebf6df2470aaa08
parent29604361a18d5dbf81d12b3a65d8ebecccda1dc4 (diff)
downloadipaddress-6b68a95f1b0ad62baf22578ede4b97d1c93f11f0.tar.gz
release 1.0.21
I forgot to update the version number in setup.py, so bump version to 1.0.21 to make sure that this correct and complete release is actually recorded in a commit.
-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 18001de..4bd5a31 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
import itertools
import struct
-__version__ = '1.0.20'
+__version__ = '1.0.21'
# Compatibility functions
_compat_int_types = (int,)
diff --git a/setup.py b/setup.py
index d01ac63..14c4301 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
settings = {
'name': 'ipaddress',
- 'version': '1.0.19',
+ 'version': '1.0.21',
'description': 'IPv4/IPv6 manipulation library',
'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
'author': 'Philipp Hagemeister',