From 82584c900fddc5422b241e294e87cd72de5078c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Wed, 5 Apr 2023 06:36:12 -0700 Subject: [PATCH] release 4.4.9 --- docs/changelog.rst | 15 +++++++++++++++ docs/changelog/1035.doc.rst | 1 - docs/changelog/2964.doc.rst | 1 - docs/changelog/2969.bugfix.rst | 3 --- 4 files changed, 15 insertions(+), 5 deletions(-) delete mode 100644 docs/changelog/1035.doc.rst delete mode 100644 docs/changelog/2964.doc.rst delete mode 100644 docs/changelog/2969.bugfix.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 2611e1a7d..0a4b8e477 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,21 @@ Release History .. towncrier release notes start +v4.4.9 (2023-04-05) +------------------- + +Bugfixes - 4.4.9 +~~~~~~~~~~~~~~~~ +- Instead of raising ``UnicodeDecodeError`` when command output includes non-utf-8 bytes, + ``tox`` will now use ``surrogateescape`` error handling to convert the unrecognized bytes + to escape sequences according to :pep:`383` - by :user:`masenf`. (:issue:`2969`) + +Improved Documentation - 4.4.9 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +- Document running tox within a Docker container. (:issue:`1035`) +- Added python version 3.11 to ``installation.rst``. (:issue:`2964`) + + v4.4.8 (2023-03-26) ------------------- diff --git a/docs/changelog/1035.doc.rst b/docs/changelog/1035.doc.rst deleted file mode 100644 index b5f1b9db2..000000000 --- a/docs/changelog/1035.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Document running tox within a Docker container. diff --git a/docs/changelog/2964.doc.rst b/docs/changelog/2964.doc.rst deleted file mode 100644 index eb7fc6c0c..000000000 --- a/docs/changelog/2964.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added python version 3.11 to ``installation.rst``. diff --git a/docs/changelog/2969.bugfix.rst b/docs/changelog/2969.bugfix.rst deleted file mode 100644 index 29464086e..000000000 --- a/docs/changelog/2969.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Instead of raising ``UnicodeDecodeError`` when command output includes non-utf-8 bytes, -``tox`` will now use ``surrogateescape`` error handling to convert the unrecognized bytes -to escape sequences according to :pep:`383` - by :user:`masenf`.