From f12d398a6991dfaad94d7fefaf7e2f55d1fda3cb Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sun, 18 Feb 2024 09:59:21 -0800 Subject: [PATCH] 2.6.1 version prep --- README.md | 2 +- dns/version.py | 2 +- doc/conf.py | 2 +- doc/whatsnew.rst | 6 ++++++ 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 17d62058..43167859 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.6.0. +This is dnspython 2.6.1. 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 4522d0d2..251f2583 100644 --- a/dns/version.py +++ b/dns/version.py @@ -22,7 +22,7 @@ #: MINOR MINOR = 6 #: MICRO -MICRO = 0 +MICRO = 1 #: RELEASELEVEL RELEASELEVEL = 0x0F #: SERIAL diff --git a/doc/conf.py b/doc/conf.py index d62f8853..d70f1546 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -63,7 +63,7 @@ # The short X.Y version. version = "2.6" # The full version, including alpha/beta/rc tags. -release = "2.6.0" +release = "2.6.1" # 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 202d9244..fccbdc29 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,6 +3,12 @@ What's New in dnspython ======================= +2.6.1 +----- + +* The Tudoor fix ate legitimate Truncated exceptions, preventing the resolver from + failing over to TCP and causing the query to timeout [#1053]. + 2.6.0 -----