From: Bob Halley Date: Wed, 13 Jul 2011 19:57:36 +0000 (-0700) Subject: the next version will be 1.10.0 X-Git-Tag: v1.10.0-py3~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2a2d96ebc334adb2d81efaa54e98d83406927bf;p=thirdparty%2Fdnspython.git the next version will be 1.10.0 --- diff --git a/README b/README index ae201dc1..367e7a2b 100644 --- a/README +++ b/README @@ -22,7 +22,7 @@ development by continuing to employ the author :). ABOUT THIS RELEASE -This is dnspython 1.9.5 +This is dnspython 1.10.0 New since 1.9.4: diff --git a/dns/version.py b/dns/version.py index 6539cfcf..7de430b6 100644 --- a/dns/version.py +++ b/dns/version.py @@ -16,8 +16,8 @@ """dnspython release version information.""" MAJOR = 1 -MINOR = 9 -MICRO = 5 +MINOR = 10 +MICRO = 0 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index e945a2c2..276cd069 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import sys from distutils.core import setup -version = '1.9.5' +version = '1.10.0' kwargs = { 'name' : 'dnspython3',