summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@nominum.com>2009-04-12 01:35:57 +0100
committerBob Halley <halley@nominum.com>2009-04-12 01:35:57 +0100
commit5d8708c31fdbd5a16d3b4d48c2a2f6d70eb36c82 (patch)
tree5e20f5af98ae88378f072e15b8d4b4fb21bc27a1
parent636966b5c99aac056a981bac62bd18af7f2b1250 (diff)
downloaddnspython-5d8708c31fdbd5a16d3b4d48c2a2f6d70eb36c82.tar.gz
Update version to 1.7.0
-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',