diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 39d9e1b3..efeafa9b 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.4.11 + rev: v2.4.12 hooks: - id: pip-audit - repo: https://github.com/rhysd/actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index a05a7c74..2285373b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked. ## [Unreleased] +## [2.4.12] + ### Fixed * Fixed `pip-audit`'s virtual environment creation and upgrade behavior, @@ -417,7 +419,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.4.11...HEAD +[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.4.12...HEAD +[2.4.12]: https://github.com/pypa/pip-audit/compare/v2.4.11...v2.4.12 [2.4.11]: https://github.com/pypa/pip-audit/compare/v2.4.10...v2.4.11 [2.4.10]: https://github.com/pypa/pip-audit/compare/v2.4.9...v2.4.10 [2.4.9]: https://github.com/pypa/pip-audit/compare/v2.4.8...v2.4.9 diff --git a/README.md b/README.md index c20e0f1b..39a842cb 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.4.11 + rev: v2.4.12 hooks: - id: pip-audit args: ["-r", "requirements.txt"] diff --git a/pip_audit/__init__.py b/pip_audit/__init__.py index 3659513b..36a3445b 100644 --- a/pip_audit/__init__.py +++ b/pip_audit/__init__.py @@ -2,4 +2,4 @@ The `pip_audit` APIs. """ -__version__ = "2.4.11" +__version__ = "2.4.12"