From 26039a0cdf975c3598a3a8ddb3240e2f6dae3469 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 12 Aug 2022 22:00:40 -0400 Subject: [PATCH] =?UTF-8?q?v0.3.0=20=E2=80=94=20Error=20on=20marker=20misu?= =?UTF-8?q?se?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The `@pytest.mark.fail_slow()` marker now errors if not given exactly one argument. Previously, it would either use the first argument or, if no arguments were given, it would be ignored. --- CHANGELOG.md | 4 ++-- src/pytest_fail_slow.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acf21fa..69c907e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.3.0 (in development) ------------------------ +v0.3.0 (2022-08-12) +------------------- - The `@pytest.mark.fail_slow()` marker now errors if not given exactly one argument. Previously, it would either use the first argument or, if no arguments were given, it would be ignored. diff --git a/src/pytest_fail_slow.py b/src/pytest_fail_slow.py index 6d7fdd4..90e333e 100644 --- a/src/pytest_fail_slow.py +++ b/src/pytest_fail_slow.py @@ -44,7 +44,7 @@ Visit for more information. """ -__version__ = "0.3.0.dev1" +__version__ = "0.3.0" __author__ = "John Thorvald Wodder II" __author_email__ = "pytest-fail-slow@varonathe.org" __license__ = "MIT"