Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/post 3.1.0 #107

Merged
merged 9 commits into from
Aug 24, 2024
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: make

- name: Publish Code Coverage
uses: paambaati/codeclimate-action@v8.0.0
uses: paambaati/codeclimate-action@v9.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Publish Python Package
# yamllint disable-line rule:line-length
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,41 @@
# Changelog


## 3.0.5
## 3.1.0 (2024-08-24)

### New

* Add ability to check that Pip and system packages have been patched. [Ben Dalling]

### Other

* Build(deps): bump paambaati/codeclimate-action from 8.0.0 to 9.0.0. [dependabot[bot]]

Bumps [paambaati/codeclimate-action](https://github.com/paambaati/codeclimate-action) from 8.0.0 to 9.0.0.
- [Release notes](https://github.com/paambaati/codeclimate-action/releases)
- [Changelog](https://github.com/paambaati/codeclimate-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/paambaati/codeclimate-action/compare/v8.0.0...v9.0.0)

---
updated-dependencies:
- dependency-name: paambaati/codeclimate-action
dependency-type: direct:production
update-type: version-update:semver-major
...

* Build(deps): bump pypa/gh-action-pypi-publish from 1.4.2 to 1.9.0. [dependabot[bot]]

Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.4.2 to 1.9.0.
- [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)
- [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/27b31702a0e7fc50959f5ad993c78deac1bdfc29...ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0)

---
updated-dependencies:
- dependency-name: pypa/gh-action-pypi-publish
dependency-type: direct:production
update-type: version-update:semver-minor
...

* Build(deps): bump urllib3 from 2.2.1 to 2.2.2. [dependabot[bot]]

Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.1 to 2.2.2.
Expand Down
17 changes: 8 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
bandit==1.7.9
build==1.2.1
colorama==0.4.6
coverage==7.6.0
coverage==7.6.1
exceptiongroup==1.2.2
flake8==7.1.0
flake8==7.1.1
flake8-docstrings==1.7.0
flake8-quotes==3.4.0
gitchangelog==3.0.4
Expand All @@ -24,27 +24,26 @@ parse-type==0.6.2
pathspec==0.12.1
pbr==6.0.0
pluggy==1.5.0
pycodestyle==2.12.0
pycodestyle==2.12.1
pydocstyle==6.3.0
pyflakes==3.2.0
Pygments==2.18.0
pyproject_hooks==1.1.0
pystache==0.6.5
pytest==8.2.2
pytest==8.3.2
pytest-bdd==7.2.0
pytest-cov==5.0.0
pytest-testinfra==10.1.1
PyYAML==6.0.1
PyYAML==6.0.2
radon==6.0.1
rich==13.7.1
setuptools==70.3.0
setuptools==73.0.1
six==1.16.0
smmap==5.0.1
snowballstemmer==2.2.0
stevedore==5.2.0
stevedore==5.3.0
tomli==2.0.1
typing_extensions==4.12.2
urllib3==2.2.2
wheel==0.43.0
wheel==0.44.0
yamllint==1.35.1

2 changes: 1 addition & 1 deletion testinfra_bdd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
This is used by setuptools and by gitchangelog to identify the name of the name
of the release.
"""
__version__ = '3.0.5'
__version__ = '3.1.0'


def get_host_fixture(hostspec, timeout=0):
Expand Down
2 changes: 1 addition & 1 deletion tests/features/example.feature
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Feature: Example of Testinfra BDD
When the TestInfra pip package is testinfra-bdd
# Can check if the package is absent or present.
Then the TestInfra pip package is present
And the TestInfra pip package version is 3.0.5
And the TestInfra pip package version is 3.1.0
And the TestInfra pip package version will be greater than or equal to 3.0.5
# Check that installed packages have compatible dependencies.
And the TestInfra pip check is OK
Expand Down