From b8e65d03bf563d5de3a285af187fd00a2f202e5e Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Tue, 11 Jun 2019 08:48:11 -0700 Subject: [PATCH] Preparing release version 4.6.3 --- CHANGELOG.rst | 16 ++++++++++++++++ changelog/5383.bugfix.rst | 2 -- changelog/5389.bugfix.rst | 1 - changelog/5390.bugfix.rst | 1 - doc/en/announce/index.rst | 1 + doc/en/announce/release-4.6.3.rst | 21 +++++++++++++++++++++ 6 files changed, 38 insertions(+), 4 deletions(-) delete mode 100644 changelog/5383.bugfix.rst delete mode 100644 changelog/5389.bugfix.rst delete mode 100644 changelog/5390.bugfix.rst create mode 100644 doc/en/announce/release-4.6.3.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 715238b327b..45e31bef94b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,22 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start +pytest 4.6.3 (2019-06-11) +========================= + +Bug Fixes +--------- + +- `#5383 `_: ``-q`` has again an impact on the style of the collected items + (``--collect-only``) when ``--log-cli-level`` is used. + + +- `#5389 `_: Fix regressions of `#5063 `__ for ``importlib_metadata.PathDistribution`` which have their ``files`` attribute being ``None``. + + +- `#5390 `_: Fix regression where the ``obj`` attribute of ``TestCase`` items was no longer bound to methods. + + pytest 4.6.2 (2019-06-03) ========================= diff --git a/changelog/5383.bugfix.rst b/changelog/5383.bugfix.rst deleted file mode 100644 index 53e25956d56..00000000000 --- a/changelog/5383.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -``-q`` has again an impact on the style of the collected items -(``--collect-only``) when ``--log-cli-level`` is used. diff --git a/changelog/5389.bugfix.rst b/changelog/5389.bugfix.rst deleted file mode 100644 index debf0a9da9d..00000000000 --- a/changelog/5389.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix regressions of `#5063 `__ for ``importlib_metadata.PathDistribution`` which have their ``files`` attribute being ``None``. diff --git a/changelog/5390.bugfix.rst b/changelog/5390.bugfix.rst deleted file mode 100644 index 3f57c3043d5..00000000000 --- a/changelog/5390.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix regression where the ``obj`` attribute of ``TestCase`` items was no longer bound to methods. diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 9379ae5b1f8..c8c7f243a4b 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-4.6.3 release-4.6.2 release-4.6.1 release-4.6.0 diff --git a/doc/en/announce/release-4.6.3.rst b/doc/en/announce/release-4.6.3.rst new file mode 100644 index 00000000000..0bfb355a15a --- /dev/null +++ b/doc/en/announce/release-4.6.3.rst @@ -0,0 +1,21 @@ +pytest-4.6.3 +======================================= + +pytest 4.6.3 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 +* Dirk Thomas + + +Happy testing, +The pytest Development Team