From dddcf24c2678191182831cf037dca540793608c4 Mon Sep 17 00:00:00 2001 From: Alex Cameron Date: Thu, 29 Dec 2022 01:54:36 +1100 Subject: [PATCH] treewide: prep 2.4.11 (#453) --- .pre-commit-config.yaml | 2 +- CHANGELOG.md | 5 ++++- README.md | 2 +- pip_audit/__init__.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5e1cfe9e..39d9e1b3 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.10 + rev: v2.4.11 hooks: - id: pip-audit - repo: https://github.com/rhysd/actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index 182a9b74..17e66a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked. ## [Unreleased] +## [2.4.11] + ### Fixed * Fixed a crash triggered when a package specifies an invalid version @@ -404,7 +406,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.10...HEAD +[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.4.11...HEAD +[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 [2.4.8]: https://github.com/pypa/pip-audit/compare/v2.4.7...v2.4.8 diff --git a/README.md b/README.md index cc80f4c0..c20e0f1b 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.10 + rev: v2.4.11 hooks: - id: pip-audit args: ["-r", "requirements.txt"] diff --git a/pip_audit/__init__.py b/pip_audit/__init__.py index 3753bd97..3659513b 100644 --- a/pip_audit/__init__.py +++ b/pip_audit/__init__.py @@ -2,4 +2,4 @@ The `pip_audit` APIs. """ -__version__ = "2.4.10" +__version__ = "2.4.11"