]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
prep 1.3.5
authorBob Halley <halley@dnspython.org>
Mon, 31 Oct 2005 07:35:33 +0000 (07:35 +0000)
committerBob Halley <halley@dnspython.org>
Mon, 31 Oct 2005 07:35:33 +0000 (07:35 +0000)
ChangeLog
README
dns/version.py
setup.py

index 330bf1c855ed0660c7eb3a3ef98ef2110b985832..b4cef236e23776a613369f1193badd9aad633c3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-10-31  Bob Halley  <halley@dnspython.org>
+
+       * (Version 1.3.5 released)
+
 2005-10-12  Bob Halley  <halley@dnspython.org>
 
        * dns/zone.py: Zone.iterate_rdatasets() and Zone.iterate_rdatas()
diff --git a/README b/README
index 1ca7b55abf77852e915fef8ee22ef3a3272dd8a1..fe54398f79b6a79466040b0e4b9f0a01a9672b1d 100644 (file)
--- a/README
+++ b/README
@@ -22,7 +22,35 @@ development by continuing to employ the author :).
 
 ABOUT THIS RELEASE
 
-This is dnspython 1.3.4
+This is dnspython 1.3.5
+
+New since 1.3.4:
+
+       In the resolver, if time goes backward a little bit, ignore
+       it.
+
+       zone_for_name() has been added to the resolver module.  It
+       returns the zone which is authoritative for the specified
+       name, which is handy for dynamic update.  E.g.
+
+             import dns.resolver
+             print dns.resolver.zone_for_name('www.dnspython.org')
+
+       will output "dnspython.org." and
+
+            print dns.resolver.zone_for_name('a.b.c.d.e.f.example.')
+
+       will output ".".
+
+       The default resolver can be fetched with the
+       get_default_resolver() method.
+
+       You can now get the parent (immediate superdomain) of a name
+       by using the parent() method.
+
+       Zone.iterate_rdatasets() and Zone.iterate_rdatas() now have
+       a default rdtype of dns.rdatatype.ANY like the documentation
+       says.
 
 New since 1.3.3:
 
index da4677b5cc46ab67c1f3c0eecc67a1d6efe7db58..bce05957f2153af632d6ee4e761f50049a07f45d 100644 (file)
@@ -17,7 +17,7 @@
 
 MAJOR = 1
 MINOR = 3
-MICRO = 4
+MICRO = 5
 RELEASELEVEL = 0x0f
 SERIAL = 0
 
index fd744ffe4d4d8ac459500c0dd7376f88243079b0..297d021a4d0ca0776bccbe3e624b3d4810c56126 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ from distutils.core import setup
 
 setup(
     name = "dnspython",
-    version = "1.3.4",
+    version = "1.3.5",
     description = "DNS toolkit",
     long_description = \
     """dnspython is a DNS toolkit for Python. It supports almost all