diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f999c0d1..6f844073 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.0 + rev: v2.7.1 hooks: - id: pip-audit - repo: https://github.com/rhysd/actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index deadf999..c6ec92e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked. ## [Unreleased] +## [2.7.1] + ### Fixed * Improved the error returned to users when their default temporary @@ -573,7 +575,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.0...HEAD +[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.7.1...HEAD +[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 [2.6.2]: https://github.com/pypa/pip-audit/compare/v2.6.1...v2.6.2 diff --git a/README.md b/README.md index f9dcc65c..24e3d842 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.0 + rev: v2.7.1 hooks: - id: pip-audit args: ["-r", "requirements.txt"] diff --git a/pip_audit/__init__.py b/pip_audit/__init__.py index 40c2d467..44266006 100644 --- a/pip_audit/__init__.py +++ b/pip_audit/__init__.py @@ -2,4 +2,4 @@ The `pip_audit` APIs. """ -__version__ = "2.7.0" +__version__ = "2.7.1"