From f6a5578d5cc780887d98a18beb5a922ccd9c27d3 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 4 Jan 2020 04:23:39 -0800 Subject: [PATCH] Preparing release version 4.6.9 --- CHANGELOG.rst | 9 +++++++++ changelog/6301.bugfix.rst | 1 - doc/en/announce/index.rst | 1 + doc/en/announce/release-4.6.9.rst | 21 +++++++++++++++++++++ 4 files changed, 31 insertions(+), 1 deletion(-) delete mode 100644 changelog/6301.bugfix.rst create mode 100644 doc/en/announce/release-4.6.9.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8fea3e9913b..4305c742904 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,15 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start +pytest 4.6.9 (2020-01-04) +========================= + +Bug Fixes +--------- + +- `#6301 `_: Fix assertion rewriting for egg-based distributions and ``editable`` installs (``pip install --editable``). + + pytest 4.6.8 (2019-12-19) ========================= diff --git a/changelog/6301.bugfix.rst b/changelog/6301.bugfix.rst deleted file mode 100644 index f13c83343f6..00000000000 --- a/changelog/6301.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix assertion rewriting for egg-based distributions and ``editable`` installs (``pip install --editable``). diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 2ea08be7856..4cfd9fa0ffa 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-4.6.9 release-4.6.8 release-4.6.7 release-4.6.6 diff --git a/doc/en/announce/release-4.6.9.rst b/doc/en/announce/release-4.6.9.rst new file mode 100644 index 00000000000..ae0478c52d9 --- /dev/null +++ b/doc/en/announce/release-4.6.9.rst @@ -0,0 +1,21 @@ +pytest-4.6.9 +======================================= + +pytest 4.6.9 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 +* Felix Yan +* Hugo + + +Happy testing, +The pytest Development Team