From d19fc5c065a83c1a603a2a525d49dc47581d1ce4 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sat, 1 Jun 2024 18:21:01 -0400 Subject: [PATCH] =?UTF-8?q?v0.6.0=20=E2=80=94=20Add=20`enabled`=20keyword?= =?UTF-8?q?=20argument=20to=20markers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++-- src/pytest_fail_slow/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b605ad6..8a18be5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.6.0 (in development) ------------------------ +v0.6.0 (2024-06-01) +------------------- - Add `enabled` keyword argument to markers v0.5.0 (2024-02-11) diff --git a/src/pytest_fail_slow/__init__.py b/src/pytest_fail_slow/__init__.py index b913a46..1cb414c 100644 --- a/src/pytest_fail_slow/__init__.py +++ b/src/pytest_fail_slow/__init__.py @@ -25,7 +25,7 @@ from typing import Union import pytest -__version__ = "0.6.0.dev1" +__version__ = "0.6.0" __author__ = "John Thorvald Wodder II" __author_email__ = "pytest-fail-slow@varonathe.org" __license__ = "MIT"