]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
increment version
authorBob Halley <halley@nominum.com>
Tue, 5 Apr 2011 11:29:21 +0000 (12:29 +0100)
committerBob Halley <halley@nominum.com>
Tue, 5 Apr 2011 11:29:21 +0000 (12:29 +0100)
README
dns/version.py
setup.py

diff --git a/README b/README
index 643d0f74256b5576b07aae395a16c4f14f68438f..ae201dc1330d133c427b99becce991f8ab9d507b 100644 (file)
--- 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:
 
index 1249c04a7b8705c6f0b736e0ce5e3086e3e3fa9a..4cc9e461994df6e683a11fe6a67c86ec2ebe839a 100644 (file)
@@ -17,7 +17,7 @@
 
 MAJOR = 1
 MINOR = 9
-MICRO = 4
+MICRO = 5
 RELEASELEVEL = 0x0f
 SERIAL = 0
 
index e9119b75b8ef9a91a99662d73470c5763f674d74..de8bea345b57bbc7000ddb2a77c3e658be8bb6b1 100755 (executable)
--- 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'] = []