From d9193c159de80f517b75d8f520889f07f4f198e2 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 30 Oct 2020 23:32:04 -0300 Subject: [PATCH 1/2] Release 0.9.0 --- CHANGES.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index b8fa0bf9..26c1ff76 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Release Notes ------------- -**0.9.0 (UNRELEASED)** +**0.9.0 (2020-10-31)** * Using ``@pytest.mark.repeat(1)`` can now be used to disable repeating a test regardless of the ``--count`` parameter given in the command-line. From e987effed02b37d30f6cbc1e8c7f51a4b3b9e62f Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 31 Oct 2020 08:01:03 -0300 Subject: [PATCH 2/2] Fix deploy condition and make it 0.9.1 --- .travis.yml | 4 ++-- CHANGES.rst | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bfb575c0..c78a3ff9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,5 +57,5 @@ deploy: on: tags: true repo: pytest-dev/pytest-repeat - python: 3.5 - condition: "$TOXENV = pytest38" + python: 3.8 + condition: "$TOXENV = py38-pytest6" diff --git a/CHANGES.rst b/CHANGES.rst index 26c1ff76..2b8be4a6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,12 +1,16 @@ Release Notes ------------- -**0.9.0 (2020-10-31)** +**0.9.1 (2020-10-31)** * Using ``@pytest.mark.repeat(1)`` can now be used to disable repeating a test regardless of the ``--count`` parameter given in the command-line. * Python 3.4 is no longer officially supported. +**0.9.0 (-)** + +* Not released do PyPI due to a deploy problem. + **0.8.0 (2019-02-26)** * Fix mark deprecation warnings in new pytest versions.