From f6ed65a7513f006126962e8d3d835eb82678a545 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 28 Aug 2018 23:26:01 +0000 Subject: [PATCH] Preparing release version 3.7.4 --- CHANGELOG.rst | 18 ++++++++++++++++++ changelog/3506.bugfix.rst | 1 - changelog/3853.bugfix.rst | 1 - changelog/3883.bugfix.rst | 1 - changelog/3888.bugfix.rst | 1 - doc/en/announce/index.rst | 1 + doc/en/announce/release-3.7.4.rst | 21 +++++++++++++++++++++ 7 files changed, 40 insertions(+), 4 deletions(-) delete mode 100644 changelog/3506.bugfix.rst delete mode 100644 changelog/3853.bugfix.rst delete mode 100644 changelog/3883.bugfix.rst delete mode 100644 changelog/3888.bugfix.rst create mode 100644 doc/en/announce/release-3.7.4.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0d6c9d41238..7d13b319ba0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,24 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start +pytest 3.7.4 (2018-08-28) +========================= + +Bug Fixes +--------- + +- `#3506 `_: Fix possible infinite recursion when writing ``.pyc`` files. + + +- `#3853 `_: Cache plugin now obeys the ``-q`` flag when ``--last-failed`` and ``--failed-first`` flags are used. + + +- `#3883 `_: Fix bad console output when using ``console_output_style=classic``. + + +- `#3888 `_: Fix macOS specific code using ``capturemanager`` plugin in doctests. + + pytest 3.7.3 (2018-08-26) ========================= diff --git a/changelog/3506.bugfix.rst b/changelog/3506.bugfix.rst deleted file mode 100644 index ccce61d0474..00000000000 --- a/changelog/3506.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix possible infinite recursion when writing ``.pyc`` files. diff --git a/changelog/3853.bugfix.rst b/changelog/3853.bugfix.rst deleted file mode 100644 index 2a89b9c3539..00000000000 --- a/changelog/3853.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Cache plugin now obeys the ``-q`` flag when ``--last-failed`` and ``--failed-first`` flags are used. diff --git a/changelog/3883.bugfix.rst b/changelog/3883.bugfix.rst deleted file mode 100644 index 3cccc87e3f6..00000000000 --- a/changelog/3883.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix bad console output when using ``console_output_style=classic``. diff --git a/changelog/3888.bugfix.rst b/changelog/3888.bugfix.rst deleted file mode 100644 index 17e00a82848..00000000000 --- a/changelog/3888.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix macOS specific code using ``capturemanager`` plugin in doctests. diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 8a97baa5a61..f4814ac7d1a 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-3.7.4 release-3.7.3 release-3.7.2 release-3.7.1 diff --git a/doc/en/announce/release-3.7.4.rst b/doc/en/announce/release-3.7.4.rst new file mode 100644 index 00000000000..088286c352c --- /dev/null +++ b/doc/en/announce/release-3.7.4.rst @@ -0,0 +1,21 @@ +pytest-3.7.4 +======================================= + +pytest 3.7.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 http://doc.pytest.org/en/latest/changelog.html. + +Thanks to all who contributed to this release, among them: + +* Anthony Sottile +* Bruno Oliveira +* Daniel Hahler +* Jiri Kuncar + + +Happy testing, +The pytest Development Team