Skip to content

Commit 888cf00

Browse files
authored
chore: prep 2.8.0 (#879)
* chore: prep 2.8.0 Signed-off-by: William Woodruff <william@trailofbits.com> * bump versions Signed-off-by: William Woodruff <william@trailofbits.com> --------- Signed-off-by: William Woodruff <william@trailofbits.com>
1 parent 96d0dd9 commit 888cf00

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313

1414
permissions:
1515
# Used to authenticate to PyPI via OIDC.
16-
# Used to sign the release's artifacts with sigstore-python.
1716
id-token: write
1817

1918
# Used to attach signing artifacts to the published release.
@@ -37,8 +36,3 @@ jobs:
3736
- name: publish
3837
uses: pypa/gh-action-pypi-publish@release/v1
3938

40-
- name: sign
41-
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0
42-
with:
43-
inputs: ./dist/*.tar.gz ./dist/*.whl
44-
release-signing-artifacts: true

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
hooks:
2828
- id: isort
2929
- repo: https://github.com/pypa/pip-audit
30-
rev: v2.7.3
30+
rev: v2.8.0
3131
hooks:
3232
- id: pip-audit
3333
- repo: https://github.com/rhysd/actionlint

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked.
88

99
## [Unreleased]
1010

11+
## [2.8.0]
12+
1113
### Added
1214

1315
* `pip-audit` now allows some CLI flags to be configured via environment
@@ -616,7 +618,8 @@ All versions prior to 0.0.9 are untracked.
616618
dependency errors ([#146](https://github.com/pypa/pip-audit/pull/146))
617619

618620
<!-- Release URLs -->
619-
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.7.3...HEAD
621+
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.8.0...HEAD
622+
[2.8.0]: https://github.com/pypa/pip-audit/compare/v2.7.3...v2.8.0
620623
[2.7.3]: https://github.com/pypa/pip-audit/compare/v2.7.2...v2.7.3
621624
[2.7.2]: https://github.com/pypa/pip-audit/compare/v2.7.1...v2.7.2
622625
[2.7.1]: https://github.com/pypa/pip-audit/compare/v2.7.0...v2.7.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ For example, using `pip-audit` via `pre-commit` to audit a requirements file:
107107

108108
```yaml
109109
- repo: https://github.com/pypa/pip-audit
110-
rev: v2.7.3
110+
rev: v2.8.0
111111
hooks:
112112
- id: pip-audit
113113
args: ["-r", "requirements.txt"]

pip_audit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
The `pip_audit` APIs.
33
"""
44

5-
__version__ = "2.7.3"
5+
__version__ = "2.8.0"

0 commit comments

Comments
 (0)