diff --git a/CHANGELOG.md b/CHANGELOG.md index cbdafef..6e93027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.2](https://github.com/xverges/pytest-xdist-load-testing/compare/v0.2.1...v0.2.2) (2025-11-22) + + +### Bug Fixes + +* remove attestations from testpypi ([#11](https://github.com/xverges/pytest-xdist-load-testing/issues/11)) ([08d6094](https://github.com/xverges/pytest-xdist-load-testing/commit/08d60946b5906bc14f0ecae9e95f3aa9644ef53a)) + ## [0.2.1](https://github.com/xverges/pytest-xdist-load-testing/compare/v0.2.0...v0.2.1) (2025-11-22) diff --git a/pyproject.toml b/pyproject.toml index 03266e4..b10abdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytest-xdist-load-testing" description = "xdist scheduler to repeately run tests" -version = "0.2.1" +version = "0.2.2" readme = "README.md" requires-python = ">=3.9" authors = [ diff --git a/src/pytest_xdist_load_testing/__init__.py b/src/pytest_xdist_load_testing/__init__.py index 3aecffe..1ccf42c 100644 --- a/src/pytest_xdist_load_testing/__init__.py +++ b/src/pytest_xdist_load_testing/__init__.py @@ -2,7 +2,7 @@ from .api import stop_load_testing, weight -__version__ = "0.2.1" +__version__ = "0.2.2" __all__ = [ "weight", "stop_load_testing",