From ecf4d3be31a71365026f0bbb8d67c157f75d695d Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 20 Sep 2021 21:17:31 -0300 Subject: [PATCH 1/3] Release 2.4.0 --- CHANGELOG.rst | 11 +++++++++++ changelog/696.feature.rst | 3 --- changelog/704.feature | 1 - 3 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 changelog/696.feature.rst delete mode 100644 changelog/704.feature diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29764aa5..5dbfaa72 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +pytest-xdist 2.4.0 (2021-09-20) +Features +-------- + +- `#696 `_: On Linux, the process title now changes to indicate the current worker state (running/idle). + + Depends on the `setproctitle `__ package, which can be installed with ``pip install pytest-xdist[setproctitle]``. + +- `#704 `_: Add support for Python 3.10. + + pytest-xdist 2.3.0 (2021-06-16) =============================== diff --git a/changelog/696.feature.rst b/changelog/696.feature.rst deleted file mode 100644 index 8c78a141..00000000 --- a/changelog/696.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -On Linux, the process title now changes to indicate the current worker state (running/idle). - -Depends on the `setproctitle `__ package, which can be installed with ``pip install pytest-xdist[setproctitle]``. diff --git a/changelog/704.feature b/changelog/704.feature deleted file mode 100644 index d1e7f795..00000000 --- a/changelog/704.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for Python 3.10. From 4b487ed5e1932992bb2fd92cb0d04df5fac4c843 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 20 Sep 2021 21:19:04 -0300 Subject: [PATCH 2/3] Manually fix changelog title --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5dbfaa72..e302e069 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,4 +1,6 @@ pytest-xdist 2.4.0 (2021-09-20) +=============================== + Features -------- From 4097c343c20f724be062f0edf303c9616bd762a2 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 21 Sep 2021 09:21:51 -0300 Subject: [PATCH 3/3] Add final note to merge PR in RELEASING.rst --- RELEASING.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASING.rst b/RELEASING.rst index 078c35b4..5cfd7c01 100644 --- a/RELEASING.rst +++ b/RELEASING.rst @@ -41,3 +41,5 @@ To publish a new release ``X.Y.Z``, the steps are as follows: $ git push git@github.com:pytest-dev/pytest-xdist.git v$VERSION That will build the package and publish it on ``PyPI`` automatically. + +#. Merge the release PR to `master`.