From d3549df5b94137453b832345a9b8074f518731b0 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 28 Jun 2019 18:22:19 -0700 Subject: [PATCH] Preparing release version 4.6.4 --- CHANGELOG.rst | 20 ++++++++++++++++++++ changelog/5404.bugfix.rst | 2 -- changelog/5444.bugfix.rst | 1 - changelog/5482.bugfix.rst | 2 -- changelog/5505.bugfix.rst | 1 - doc/en/announce/index.rst | 1 + doc/en/announce/release-4.6.4.rst | 22 ++++++++++++++++++++++ 7 files changed, 43 insertions(+), 6 deletions(-) delete mode 100644 changelog/5404.bugfix.rst delete mode 100644 changelog/5444.bugfix.rst delete mode 100644 changelog/5482.bugfix.rst delete mode 100644 changelog/5505.bugfix.rst create mode 100644 doc/en/announce/release-4.6.4.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 45e31bef9..db0d3462b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,26 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start +pytest 4.6.4 (2019-06-28) +========================= + +Bug Fixes +--------- + +- `#5404 `_: Emit a warning when attempting to unwrap a broken object raises an exception, + for easier debugging (`#5080 `__). + + +- `#5444 `_: Fix ``--stepwise`` mode when the first file passed on the command-line fails to collect. + + +- `#5482 `_: Fix bug introduced in 4.6.0 causing collection errors when passing + more than 2 positional arguments to ``pytest.mark.parametrize``. + + +- `#5505 `_: Fix crash when discovery fails while using ``-p no:terminal``. + + pytest 4.6.3 (2019-06-11) ========================= diff --git a/changelog/5404.bugfix.rst b/changelog/5404.bugfix.rst deleted file mode 100644 index 2187bed8b..000000000 --- a/changelog/5404.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Emit a warning when attempting to unwrap a broken object raises an exception, -for easier debugging (`#5080 `__). diff --git a/changelog/5444.bugfix.rst b/changelog/5444.bugfix.rst deleted file mode 100644 index 230d4b49e..000000000 --- a/changelog/5444.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``--stepwise`` mode when the first file passed on the command-line fails to collect. diff --git a/changelog/5482.bugfix.rst b/changelog/5482.bugfix.rst deleted file mode 100644 index c345458d1..000000000 --- a/changelog/5482.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix bug introduced in 4.6.0 causing collection errors when passing -more than 2 positional arguments to ``pytest.mark.parametrize``. diff --git a/changelog/5505.bugfix.rst b/changelog/5505.bugfix.rst deleted file mode 100644 index 2d0a53b39..000000000 --- a/changelog/5505.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix crash when discovery fails while using ``-p no:terminal``. diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index c8c7f243a..5c6fbcad9 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-4.6.4 release-4.6.3 release-4.6.2 release-4.6.1 diff --git a/doc/en/announce/release-4.6.4.rst b/doc/en/announce/release-4.6.4.rst new file mode 100644 index 000000000..7b35ed4f0 --- /dev/null +++ b/doc/en/announce/release-4.6.4.rst @@ -0,0 +1,22 @@ +pytest-4.6.4 +======================================= + +pytest 4.6.4 has just been released to PyPI. + +This is a bug-fix release, being a drop-in replacement. To upgrade:: + + pip install --upgrade pytest + +The full changelog is available at https://docs.pytest.org/en/latest/changelog.html. + +Thanks to all who contributed to this release, among them: + +* Anthony Sottile +* Bruno Oliveira +* Daniel Hahler +* Thomas Grainger +* Zac Hatfield-Dodds + + +Happy testing, +The pytest Development Team