From 203e44d5f35537caf27f14a3bf6d9ce78659f409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Mon, 5 Dec 2022 20:37:45 -0800 Subject: [PATCH] release 4.0.0rc3 --- docs/changelog.rst | 16 ++++++++++++++++ docs/changelog/2594.bugfix.rst | 2 -- docs/changelog/2595.bugfix.rst | 2 -- docs/changelog/2595.feature.rst | 2 -- 4 files changed, 16 insertions(+), 6 deletions(-) delete mode 100644 docs/changelog/2594.bugfix.rst delete mode 100644 docs/changelog/2595.bugfix.rst delete mode 100644 docs/changelog/2595.feature.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 383e4c8ec..b0c3ac4c6 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 b36a6432e..000000000 --- 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 76965123f..000000000 --- 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 dfc728926..000000000 --- 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`.