summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README8
-rw-r--r--dns/version.py2
-rwxr-xr-xsetup.py2
3 files changed, 9 insertions, 3 deletions
diff --git a/README b/README
index 196ed11..d68954d 100644
--- a/README
+++ b/README
@@ -22,7 +22,13 @@ development by continuing to employ the author :).
ABOUT THIS RELEASE
-This is dnspython 1.6.0.
+This is dnspython 1.7.0.
+
+New since 1.6.0:
+ TBS
+
+Bugs fixed since 1.6.0:
+ TBS
New since 1.5.0:
Added dns.inet.is_multicast().
diff --git a/dns/version.py b/dns/version.py
index 94952bb..079ad89 100644
--- a/dns/version.py
+++ b/dns/version.py
@@ -16,7 +16,7 @@
"""dnspython release version information."""
MAJOR = 1
-MINOR = 6
+MINOR = 7
MICRO = 0
RELEASELEVEL = 0x0f
SERIAL = 0
diff --git a/setup.py b/setup.py
index 84f0722..2f1817a 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
import sys
from distutils.core import setup
-version = '1.6.0'
+version = '1.7.0'
kwargs = {
'name' : 'dnspython',