diff --git a/changelog/8539.bugfix.rst b/changelog/8539.bugfix.rst deleted file mode 100644 index a2098610e29..00000000000 --- a/changelog/8539.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed assertion rewriting on Python 3.10. diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index f9720eab920..7751405a196 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-6.2.4 release-6.2.3 release-6.2.2 release-6.2.1 diff --git a/doc/en/announce/release-6.2.4.rst b/doc/en/announce/release-6.2.4.rst new file mode 100644 index 00000000000..fa2e3e78132 --- /dev/null +++ b/doc/en/announce/release-6.2.4.rst @@ -0,0 +1,22 @@ +pytest-6.2.4 +======================================= + +pytest 6.2.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/stable/changelog.html. + +Thanks to all of the contributors to this release: + +* Anthony Sottile +* Bruno Oliveira +* Christian Maurer +* Florian Bruhin +* Ran Benita + + +Happy testing, +The pytest Development Team diff --git a/doc/en/changelog.rst b/doc/en/changelog.rst index b4ffd08dac5..16b41bd78e5 100644 --- a/doc/en/changelog.rst +++ b/doc/en/changelog.rst @@ -28,6 +28,15 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start +pytest 6.2.4 (2021-05-04) +========================= + +Bug Fixes +--------- + +- `#8539 `_: Fixed assertion rewriting on Python 3.10. + + pytest 6.2.3 (2021-04-03) ========================= diff --git a/doc/en/getting-started.rst b/doc/en/getting-started.rst index e1f7961e696..d876368d80a 100644 --- a/doc/en/getting-started.rst +++ b/doc/en/getting-started.rst @@ -28,7 +28,7 @@ Install ``pytest`` .. code-block:: bash $ pytest --version - pytest 6.2.3 + pytest 6.2.4 .. _`simpletest`: