From 1c5efffd904e0068a3e7b4090d94bbe589be66bf Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sun, 6 Oct 2019 07:58:23 -0400 Subject: [PATCH 1/2] Add changelog entry for #5902 --- changelog/5902.bugfix.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/5902.bugfix.rst diff --git a/changelog/5902.bugfix.rst b/changelog/5902.bugfix.rst new file mode 100644 index 000000000..dccb49757 --- /dev/null +++ b/changelog/5902.bugfix.rst @@ -0,0 +1 @@ +Fix warnings about deprecated ``cmp`` attribute in ``attrs>=19.2``. \ No newline at end of file From 12cc729f6b50abbd3708dfc64e76ff454852b805 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sun, 6 Oct 2019 08:00:49 -0400 Subject: [PATCH 2/2] Preparing release version 5.2.1 --- CHANGELOG.rst | 9 +++++++++ changelog/5902.bugfix.rst | 1 - doc/en/announce/index.rst | 1 + doc/en/announce/release-5.2.1.rst | 23 +++++++++++++++++++++++ 4 files changed, 33 insertions(+), 1 deletion(-) delete mode 100644 changelog/5902.bugfix.rst create mode 100644 doc/en/announce/release-5.2.1.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 504b0f517..c03fa631e 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 5.2.1 (2019-10-06) +========================= + +Bug Fixes +--------- + +- `#5902 `_: Fix warnings about deprecated ``cmp`` attribute in ``attrs>=19.2``. + + pytest 5.2.0 (2019-09-28) ========================= diff --git a/changelog/5902.bugfix.rst b/changelog/5902.bugfix.rst deleted file mode 100644 index dccb49757..000000000 --- a/changelog/5902.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix warnings about deprecated ``cmp`` attribute in ``attrs>=19.2``. \ No newline at end of file diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 5fe3cc78c..d5e684198 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-5.2.1 release-5.2.0 release-5.1.3 release-5.1.2 diff --git a/doc/en/announce/release-5.2.1.rst b/doc/en/announce/release-5.2.1.rst new file mode 100644 index 000000000..312cfd778 --- /dev/null +++ b/doc/en/announce/release-5.2.1.rst @@ -0,0 +1,23 @@ +pytest-5.2.1 +======================================= + +pytest 5.2.1 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 +* Florian Bruhin +* Hynek Schlawack +* Kevin J. Foley +* tadashigaki + + +Happy testing, +The pytest Development Team