From: Bob Halley Date: Tue, 5 Apr 2011 11:29:21 +0000 (+0100) Subject: increment version X-Git-Tag: v1.10.0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c32043d0f08c5b67d02ee073c752e1493ef8e2f;p=thirdparty%2Fdnspython.git increment version --- diff --git a/README b/README index 643d0f74..ae201dc1 100644 --- a/README +++ b/README @@ -22,7 +22,25 @@ development by continuing to employ the author :). ABOUT THIS RELEASE -This is dnspython 1.9.3 +This is dnspython 1.9.5 + +New since 1.9.4: + + XXX TBS. + +Bugs fixed since 1.9.4: + + XXX TBS. + +New since 1.9.3: + + Nothing. + +Bugs fixed since 1.9.3: + + The rdata _wire_cmp() routine now handles relative names. + + The SIG RR implementation was missing 'import struct'. New since 1.9.2: diff --git a/dns/version.py b/dns/version.py index 1249c04a..4cc9e461 100644 --- a/dns/version.py +++ b/dns/version.py @@ -17,7 +17,7 @@ MAJOR = 1 MINOR = 9 -MICRO = 4 +MICRO = 5 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index e9119b75..de8bea34 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import sys from distutils.core import setup -version = '1.9.4' +version = '1.9.5' kwargs = { 'name' : 'dnspython', @@ -38,13 +38,9 @@ direct manipulation of DNS zones, messages, names, and records.""", 'license' : 'BSD-like', 'url' : 'http://www.dnspython.org', 'packages' : ['dns', 'dns.rdtypes', 'dns.rdtypes.IN', 'dns.rdtypes.ANY'], - } - -if sys.hexversion >= 0x02020300: - kwargs['download_url'] = \ - 'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version, - version) - kwargs['classifiers'] = [ + 'download_url' : \ + 'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version, version), + 'classifiers' : [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: System Administrators", @@ -54,7 +50,8 @@ if sys.hexversion >= 0x02020300: "Programming Language :: Python", "Topic :: Internet :: Name Service (DNS)", "Topic :: Software Development :: Libraries :: Python Modules", - ] + ], + } if sys.hexversion >= 0x02050000: kwargs['requires'] = []