diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c8a49f49..fc107a28 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.5.2 + rev: v2.5.3 hooks: - id: pip-audit - repo: https://github.com/rhysd/actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index 9330e6eb..921da4d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked. ## [Unreleased] +## [2.5.3] + ### Changed * Further simplified `pip-audit`'s dependency resolution to remove inconsistent @@ -492,7 +494,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.5.2...HEAD +[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.5.3...HEAD +[2.5.3]: https://github.com/pypa/pip-audit/compare/v2.5.2...v2.5.3 [2.5.2]: https://github.com/pypa/pip-audit/compare/v2.5.1...v2.5.2 [2.5.1]: https://github.com/pypa/pip-audit/compare/v2.5.0...v2.5.1 [2.5.0]: https://github.com/pypa/pip-audit/compare/v2.4.15...v2.5.0 diff --git a/README.md b/README.md index a09e6776..ffdb162e 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.5.2 + rev: v2.5.3 hooks: - id: pip-audit args: ["-r", "requirements.txt"] diff --git a/pip_audit/__init__.py b/pip_audit/__init__.py index ef380c2a..d6909296 100644 --- a/pip_audit/__init__.py +++ b/pip_audit/__init__.py @@ -2,4 +2,4 @@ The `pip_audit` APIs. """ -__version__ = "2.5.2" +__version__ = "2.5.3"