diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e93027..72976b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.3](https://github.com/xverges/pytest-xdist-load-testing/compare/v0.2.2...v0.2.3) (2025-11-22) + + +### Bug Fixes + +* remove v from tag when looking for the version ([#13](https://github.com/xverges/pytest-xdist-load-testing/issues/13)) ([2150f95](https://github.com/xverges/pytest-xdist-load-testing/commit/2150f950a58f570070f05973c2fc60608d8893b7)) + ## [0.2.2](https://github.com/xverges/pytest-xdist-load-testing/compare/v0.2.1...v0.2.2) (2025-11-22) diff --git a/pyproject.toml b/pyproject.toml index b10abdf..8f561a1 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.2" +version = "0.2.3" 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 1ccf42c..e2c6972 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.2" +__version__ = "0.2.3" __all__ = [ "weight", "stop_load_testing",