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`.