From 0c9584b5162ecb904712f4b3be39f76a619aa832 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 11 Feb 2024 07:02:22 -0500 Subject: [PATCH] =?UTF-8?q?v0.5.0=20=E2=80=94=20Modernization?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Migrated from setuptools to hatch - Drop support for Python 3.7 - Don't cause an internal error on marker misuse with pluggy 1.4+ - Drop support for pytest 6 - Require pluggy 1.1+ - Add type-checking --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- src/pytest_fail_slow/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f7269a..08e08a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.5.0 (in development) ------------------------ +v0.5.0 (2024-02-11) +------------------- - Migrated from setuptools to hatch - Drop support for Python 3.7 - Don't cause an internal error on marker misuse with pluggy 1.4+ diff --git a/LICENSE b/LICENSE index 80b7bc1..e59de7e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2021-2023 John Thorvald Wodder II +Copyright (c) 2021-2024 John Thorvald Wodder II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/pytest_fail_slow/__init__.py b/src/pytest_fail_slow/__init__.py index aa642ed..a4d65e4 100644 --- a/src/pytest_fail_slow/__init__.py +++ b/src/pytest_fail_slow/__init__.py @@ -20,7 +20,7 @@ from typing import Generator, Union import pytest -__version__ = "0.5.0.dev1" +__version__ = "0.5.0" __author__ = "John Thorvald Wodder II" __author_email__ = "pytest-fail-slow@varonathe.org" __license__ = "MIT"