summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG21
-rw-r--r--netaddr/__init__.py4
2 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d89c6e6..0eb285d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,24 @@
+-------------------
+Release: 0.7.20-dev
+-------------------
+Date: ? May 2017
+
+^^^^^^^^^^^^^^^^^^^^
+Changes since 0.7.19
+^^^^^^^^^^^^^^^^^^^^
+
+Bug fixes.
+
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Specific bug fixes addressed in this release
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+FIXED Issue 148: https://github.com/drkjam/netaddr/issues/148
+ - Fix IPNetwork.subnet doing unnecessary work
+
+FIXED Issue 149: https://github.com/drkjam/netaddr/issues/149
+ - python 3 regression in 0.7.19 (bug in test suite, not code)
+
---------------
Release: 0.7.19
---------------
diff --git a/netaddr/__init__.py b/netaddr/__init__.py
index 61e88ac..7b3d391 100644
--- a/netaddr/__init__.py
+++ b/netaddr/__init__.py
@@ -6,8 +6,8 @@
"""A Python library for manipulating IP and EUI network addresses."""
#: Version info (major, minor, maintenance, status)
-VERSION = (0, 7, 19)
-STATUS = ''
+VERSION = (0, 7, 20)
+STATUS = 'dev'
__version__ = '%d.%d.%d' % VERSION[0:3] + STATUS
import sys as _sys