diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/changelog.rst | 16 | ||||
-rw-r--r-- | docs/changelog/2594.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/2595.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/2595.feature.rst | 2 |
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`. |