diff options
author | Bob Halley <halley@nominum.com> | 2009-11-13 04:08:23 +0900 |
---|---|---|
committer | Bob Halley <halley@nominum.com> | 2009-11-13 04:08:23 +0900 |
commit | 6e9ea2c2999d0e6f3ed509f4d98a18aa237c9ae2 (patch) | |
tree | c8a53366aa9dc3ac8a42cea3cd1ff95626893452 | |
parent | 3323a3612d5b3c34e21dcd105ffac2a5b3be4889 (diff) | |
download | dnspython-6e9ea2c2999d0e6f3ed509f4d98a18aa237c9ae2.tar.gz |
prep 1.8
-rw-r--r-- | README | 28 | ||||
-rw-r--r-- | dns/version.py | 4 |
2 files changed, 29 insertions, 3 deletions
@@ -22,7 +22,33 @@ development by continuing to employ the author :). ABOUT THIS RELEASE -This is dnspython 1.7.1. +This is dnspython 1.8.0 + +New since 1.7.1: + + Support for hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384 + and hmac-sha512 has been contributed by Kevin Chen. + +Bugs fixed since 1.7.1: + + When constructing a DDNS update, if the present() method was + used with a single rdata, a zero TTL was not added. + + The entropy pool needed locking to be thread safe. + + The entropy pool's reading of /dev/random could cause + dnspython to block. + + The entropy pool did buffered reads, potentially consuming more + randomness than we needed. + + The entropy pool did not seed with high quality randomness on + Windows. + + SRV records were compared incorrectly. + + In the e164 query function, the resolver parameter was not + used. New since 1.7.0: diff --git a/dns/version.py b/dns/version.py index f7e9220..49e3148 100644 --- a/dns/version.py +++ b/dns/version.py @@ -16,8 +16,8 @@ """dnspython release version information.""" MAJOR = 1 -MINOR = 7 -MICRO = 2 +MINOR = 8 +MICRO = 0 RELEASELEVEL = 0x0f SERIAL = 0 |