From: Bob Halley Date: Sun, 6 Aug 2023 01:47:25 +0000 (-0700) Subject: 2.4.2 prep X-Git-Tag: v2.4.2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b79e30e5a42f52ecfbca8a1b9278e8cc5274a329;p=thirdparty%2Fdnspython.git 2.4.2 prep --- diff --git a/README.md b/README.md index ef2fc6ba..c0b1e0b0 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is dnspython 2.4.1. +This is dnspython 2.4.2. Please read [What's New](https://dnspython.readthedocs.io/en/stable/whatsnew.html) for information about the changes in this release. diff --git a/dns/version.py b/dns/version.py index 8a7f5248..1f1fbf2d 100644 --- a/dns/version.py +++ b/dns/version.py @@ -22,7 +22,7 @@ MAJOR = 2 #: MINOR MINOR = 4 #: MICRO -MICRO = 1 +MICRO = 2 #: RELEASELEVEL RELEASELEVEL = 0x0F #: SERIAL diff --git a/doc/conf.py b/doc/conf.py index c522bfad..10fc72de 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -63,7 +63,7 @@ author = "Dnspython Contributors" # The short X.Y version. version = "2.4" # The full version, including alpha/beta/rc tags. -release = "2.4.1" +release = "2.4.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index fe592866..470ec752 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,6 +3,15 @@ What's New in dnspython ======================= +2.4.2 +----- + +* Async queries could wait forever instead of respecting the timeout if the timeout was + 0 and a packet was lost. The timeout is now respected. + +* Restore HTTP/2 support which was accidentally broken during the https refactoring done + as part of 2.4.0. + 2.4.1 ----- diff --git a/pyproject.toml b/pyproject.toml index 4d6026a9..d28691c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.4.1" +version = "2.4.2" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.cfg b/setup.cfg index 73c5e8f2..fb7e528e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dnspython -version = 2.4.1 +version = 2.4.2 author = Bob Halley author_email = halley@dnspython.org license = ISC