summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2022-12-05 20:37:45 -0800
committerBernát Gábor <bgabor8@bloomberg.net>2022-12-05 20:37:45 -0800
commit203e44d5f35537caf27f14a3bf6d9ce78659f409 (patch)
tree9c42c7b37ea537b525122fa073fdc2c7dae49b3f /docs
parentc5013f356e07183b0c2b7abeffd23a05fd404314 (diff)
downloadtox-git-203e44d5f35537caf27f14a3bf6d9ce78659f409.tar.gz
release 4.0.0rc34.0.0rc3
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog.rst16
-rw-r--r--docs/changelog/2594.bugfix.rst2
-rw-r--r--docs/changelog/2595.bugfix.rst2
-rw-r--r--docs/changelog/2595.feature.rst2
4 files changed, 16 insertions, 6 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 383e4c8e..b0c3ac4c 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,6 +4,22 @@ Release History
.. towncrier release notes start
+v4.0.0rc3 (2022-12-05)
+----------------------
+
+Features - 4.0.0rc3
+~~~~~~~~~~~~~~~~~~~
+- Add ``--exit-and-dump-after`` flag that allows automatically killing tox if does not finish within the passed seconds,
+ and dump the thread stacks (useful to debug tox when it seemingly hangs) - by :user:`gaborbernat`. (:issue:`2595`)
+
+Bugfixes - 4.0.0rc3
+~~~~~~~~~~~~~~~~~~~
+- Ensure that two parallel tox instance invocations on different tox environment targets will work by holding a file lock
+ onto the packaging operations (e.g., in bash ``tox4 r -e py311 &; tox4 r -e py310``) - by :user:`gaborbernat`. (:issue:`2594`)
+- Fix leaking backend processes when the build backend does not support editable wheels and fix failure when multiple
+ environments exist that have a build backend that does not support editable wheels - by :user:`gaborbernat`. (:issue:`2595`)
+
+
v4.0.0rc2 (2022-12-04)
----------------------
diff --git a/docs/changelog/2594.bugfix.rst b/docs/changelog/2594.bugfix.rst
deleted file mode 100644
index b36a6432..00000000
--- a/docs/changelog/2594.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Ensure that two parallel tox instance invocations on different tox environment targets will work by holding a file lock
-onto the packaging operations (e.g., in bash ``tox4 r -e py311 &; tox4 r -e py310``) - by :user:`gaborbernat`.
diff --git a/docs/changelog/2595.bugfix.rst b/docs/changelog/2595.bugfix.rst
deleted file mode 100644
index 76965123..00000000
--- a/docs/changelog/2595.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix leaking backend processes when the build backend does not support editable wheels and fix failure when multiple
-environments exist that have a build backend that does not support editable wheels - by :user:`gaborbernat`.
diff --git a/docs/changelog/2595.feature.rst b/docs/changelog/2595.feature.rst
deleted file mode 100644
index dfc72892..00000000
--- a/docs/changelog/2595.feature.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Add ``--exit-and-dump-after`` flag that allows automatically killing tox if does not finish within the passed seconds,
-and dump the thread stacks (useful to debug tox when it seemingly hangs) - by :user:`gaborbernat`.