diff --git a/CHANGELOG.md b/CHANGELOG.md index 776a65f..b3d34d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Changelog -## 1.0.2 +## 1.0.3 + +### Fix + +* Correct SemVer version for pytest-bdd requirement. [Ben Dalling] + + +## 1.0.2 (2022-07-17) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 56980e6..271cac8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "pytest-bdd>=5.00<6.0.0", + "pytest-bdd>=5.0.0<6.0.0", "pytest-testinfra>=6.0.0<7.0.0", # "semver>=2.13.0<=3.0.0", "setuptools>=42", diff --git a/testinfra_bdd/__init__.py b/testinfra_bdd/__init__.py index bdb85ca..683b3df 100644 --- a/testinfra_bdd/__init__.py +++ b/testinfra_bdd/__init__.py @@ -23,7 +23,7 @@ This is used by setuptools and by gitchangelog to identify the name of the name of the release. """ -__version__ = '1.0.2' +__version__ = '1.0.3' @given(parsers.parse('the host with URL "{hostspec}" is ready'), target_fixture='testinfra_bdd_host')