summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2023-04-05 06:36:12 -0700
committerBernát Gábor <bgabor8@bloomberg.net>2023-04-05 06:36:12 -0700
commit82584c900fddc5422b241e294e87cd72de5078c9 (patch)
tree5ef267d8456e52d43449cb5d37ff59ef7af01e35
parentcad2c77bb1ecd69d9c5e214557184dc54b0d4a2d (diff)
downloadtox-git-82584c900fddc5422b241e294e87cd72de5078c9.tar.gz
release 4.4.94.4.9
-rw-r--r--docs/changelog.rst15
-rw-r--r--docs/changelog/1035.doc.rst1
-rw-r--r--docs/changelog/2964.doc.rst1
-rw-r--r--docs/changelog/2969.bugfix.rst3
4 files changed, 15 insertions, 5 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 2611e1a7..0a4b8e47 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 b5f1b9db..00000000
--- 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 eb7fc6c0..00000000
--- 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 29464086..00000000
--- 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`.