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

chore: prep 2.8.0 #879

Merged
merged 2 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:

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

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

- name: sign
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0
with:
inputs: ./dist/*.tar.gz ./dist/*.whl
release-signing-artifacts: true
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/pypa/pip-audit
rev: v2.7.3
rev: v2.8.0
hooks:
- id: pip-audit
- repo: https://github.com/rhysd/actionlint
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked.

## [Unreleased]

## [2.8.0]

### Added

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

<!-- Release URLs -->
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.7.3...HEAD
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.8.0...HEAD
[2.8.0]: https://github.com/pypa/pip-audit/compare/v2.7.3...v2.8.0
[2.7.3]: https://github.com/pypa/pip-audit/compare/v2.7.2...v2.7.3
[2.7.2]: https://github.com/pypa/pip-audit/compare/v2.7.1...v2.7.2
[2.7.1]: https://github.com/pypa/pip-audit/compare/v2.7.0...v2.7.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ For example, using `pip-audit` via `pre-commit` to audit a requirements file:

```yaml
- repo: https://github.com/pypa/pip-audit
rev: v2.7.3
rev: v2.8.0
hooks:
- id: pip-audit
args: ["-r", "requirements.txt"]
Expand Down
2 changes: 1 addition & 1 deletion pip_audit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
The `pip_audit` APIs.
"""

__version__ = "2.7.3"
__version__ = "2.8.0"
Loading