From: Bob Halley Date: Sun, 12 Apr 2009 00:35:57 +0000 (+0100) Subject: Update version to 1.7.0 X-Git-Tag: v1.7.0~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d8708c31fdbd5a16d3b4d48c2a2f6d70eb36c82;p=thirdparty%2Fdnspython.git Update version to 1.7.0 --- diff --git a/README b/README index 196ed11c..d68954d5 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 94952bb7..079ad892 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 84f0722a..2f1817a2 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',