]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
prep 1.5
authorBob Halley <halley@dnspython.org>
Mon, 25 Sep 2006 02:55:37 +0000 (02:55 +0000)
committerBob Halley <halley@dnspython.org>
Mon, 25 Sep 2006 02:55:37 +0000 (02:55 +0000)
README

diff --git a/README b/README
index 008f85aea9b690ebb9f15a5ee2d1ed5e353f5f90..07f9cd27f223f6f4ece3e9f48b740bb609eb900f 100644 (file)
--- a/README
+++ b/README
@@ -22,7 +22,33 @@ development by continuing to employ the author :).
 
 ABOUT THIS RELEASE
 
-This is dnspython 1.4.0.
+This is dnspython 1.5.0.
+
+New since 1.4.0:
+
+       Answer objects now support more of the python sequence
+       protocol, forwarding the requests to the answer rrset.
+       E.g. "for a in answer" is equivalent to "for a in
+       answer.rrset", "answer[i]" is equivalent to "answer.rrset[i]",
+       and "answer[i:j]" is equivalent to "answer.rrset[i:j]".
+
+       Making requests using EDNS, including indicating DNSSEC awareness,
+       is now easier.  For example, you can now say:
+
+          q = dns.message.make_query('www.dnspython.org', 'MX',
+                                     want_dnssec=True)
+
+       dns.query.xfr() can now be used for IXFR.
+
+       Support has been added for the IPSECKEY and SPF RR types.
+
+Bugs fixed since 1.4.0:
+
+        If /etc/resolv.conf didn't exist, we raised an exception
+       instead of simply using the default resolver configuration.
+
+       In dns.resolver.Resolver._config_win32_fromkey(), we were
+       passing the wrong variable to self._config_win32_search().
 
 New since 1.3.5: