diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6f844073..d8ad12b5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -27,7 +27,7 @@ repos: hooks: - id: isort - repo: https://github.com/pypa/pip-audit - rev: v2.7.1 + rev: v2.7.2 hooks: - id: pip-audit - repo: https://github.com/rhysd/actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e92269b..49630715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked. ## [Unreleased] +## [2.7.2] + ### Fixed * `pip-audit` now invokes `pip` with `--keyring-provider=subprocess`, @@ -582,7 +584,8 @@ All versions prior to 0.0.9 are untracked. dependency errors ([#146](https://github.com/pypa/pip-audit/pull/146)) -[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.7.1...HEAD +[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.7.2...HEAD +[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 [2.7.0]: https://github.com/pypa/pip-audit/compare/v2.6.3...v2.7.0 [2.6.3]: https://github.com/pypa/pip-audit/compare/v2.6.2...v2.6.3 diff --git a/README.md b/README.md index 756ebd44..545fe1cb 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,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.1 + rev: v2.7.2 hooks: - id: pip-audit args: ["-r", "requirements.txt"] diff --git a/pip_audit/__init__.py b/pip_audit/__init__.py index 44266006..448785e1 100644 --- a/pip_audit/__init__.py +++ b/pip_audit/__init__.py @@ -2,4 +2,4 @@ The `pip_audit` APIs. """ -__version__ = "2.7.1" +__version__ = "2.7.2"