diff --git a/README.md b/README.md index 5143d9b..f138ce1 100644 --- a/README.md +++ b/README.md @@ -86,11 +86,15 @@ $ pytest ## Unreleased -* drop support python3.9 and add support python3.14 +* todo: describe new features here ## Change Log +### 1.6.2 (Mar 13, 2026) + +* drop support python3.9 and add support python3.14 + ### 1.6.1 (Aug 29, 2025) * Introduced a new `--pytest-durations-group-by=none` option that preserves the full test node ID, including parameters diff --git a/pyproject.toml b/pyproject.toml index 95807a2..b19c03e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-durations" -version = "1.6.1" +version = "1.6.2" description = "Pytest plugin reporting fixtures and test functions execution time." authors = ["Oleg Blednov "] license = "MIT" diff --git a/src/pytest_durations/__init__.py b/src/pytest_durations/__init__.py index a25444d..755a02f 100644 --- a/src/pytest_durations/__init__.py +++ b/src/pytest_durations/__init__.py @@ -1,4 +1,5 @@ """Pytest plugin package to measure fixture and test durations.""" + from pytest_durations.options import pytest_addoption, pytest_configure # noqa: F401 -__version__ = "1.6.1" +__version__ = "1.6.2"