Skip to content

Commit

Permalink
Merge branch 'release/1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
dallinb committed Jul 17, 2022
2 parents 259f3bf + b9d51ef commit 82659eb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog


## 1.0.3
## 1.0.4

### Fix

* Missing a comma in the version specifications for requirements. [Ben Dalling]


## 1.0.3 (2022-07-17)

### Fix

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"pytest-bdd>=5.0.0<6.0.0",
"pytest-testinfra>=6.0.0<7.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",
"urllib3>=1.26.0",
Expand Down
2 changes: 1 addition & 1 deletion testinfra_bdd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3'
__version__ = '1.0.4'


@given(parsers.parse('the host with URL "{hostspec}" is ready'), target_fixture='testinfra_bdd_host')
Expand Down

0 comments on commit 82659eb

Please sign in to comment.