summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2023-01-17 07:14:43 -0800
committerBernát Gábor <bgabor8@bloomberg.net>2023-01-17 07:14:43 -0800
commit23510dc61a2e5e4fc5381a957e75f17796ace265 (patch)
treee6f71225e0acb0bc7bd197d889e0c1166d8602fd
parentd53f0623ea88ed3dbd7f990131b2d716816e464a (diff)
downloadtox-git-23510dc61a2e5e4fc5381a957e75f17796ace265.tar.gz
release 4.3.44.3.4
-rw-r--r--docs/changelog.rst18
-rw-r--r--docs/changelog/2876.bugfix.rst7
-rw-r--r--docs/changelog/2878.misc.rst1
3 files changed, 18 insertions, 8 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 603cdecb..236ce1e1 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,6 +4,24 @@ Release History
.. towncrier release notes start
+v4.3.4 (2023-01-17)
+-------------------
+
+Bugfixes - 4.3.4
+~~~~~~~~~~~~~~~~
+- When executing via the provisioning environment (``.tox`` by default), run
+ ``tox`` in working directory of the parent process.
+
+ Prior to this change (from tox 4.0.0), the provisioned ``tox`` would execute with
+ ``{tox_root}`` as the working directory, which breaks when a relative path is
+ passed to ``-c`` or ``--conf`` and ``tox`` is executed in a working directory
+ other than ``{tox_root}`` - by :user:`masenf`. (:issue:`2876`)
+
+Misc - 4.3.4
+~~~~~~~~~~~~
+- :issue:`2878`
+
+
v4.3.3 (2023-01-16)
-------------------
diff --git a/docs/changelog/2876.bugfix.rst b/docs/changelog/2876.bugfix.rst
deleted file mode 100644
index 94f54756..00000000
--- a/docs/changelog/2876.bugfix.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-When executing via the provisioning environment (``.tox`` by default), run
-``tox`` in working directory of the parent process.
-
-Prior to this change (from tox 4.0.0), the provisioned ``tox`` would execute with
-``{tox_root}`` as the working directory, which breaks when a relative path is
-passed to ``-c`` or ``--conf`` and ``tox`` is executed in a working directory
-other than ``{tox_root}`` - by :user:`masenf`.
diff --git a/docs/changelog/2878.misc.rst b/docs/changelog/2878.misc.rst
deleted file mode 100644
index 4b727e2a..00000000
--- a/docs/changelog/2878.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-* Fix an incorrect type annotation for the ``color`` parameter in ``Spinner.finalize()``.