From 27dfa6ffc95e4f7f632433edc16e7b7d4c9ea809 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Thu, 11 Jan 2024 14:34:37 -0500 Subject: [PATCH] prep 2.7.0 (#722) Signed-off-by: William Woodruff --- .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 d94888fb..f999c0d1 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.6.3 + rev: v2.7.0 hooks: - id: pip-audit - repo: https://github.com/rhysd/actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index e8250e46..598906dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked. ## [Unreleased] +## [2.7.0] + ### Added * `pip-audit` now includes vulnerability aliases when `--format=json` is used, @@ -565,7 +567,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.6.3...HEAD +[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.7.0...HEAD +[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 [2.6.1]: https://github.com/pypa/pip-audit/compare/v2.6.0...v2.6.1 diff --git a/README.md b/README.md index e3e8182b..f9dcc65c 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.6.3 + rev: v2.7.0 hooks: - id: pip-audit args: ["-r", "requirements.txt"] diff --git a/pip_audit/__init__.py b/pip_audit/__init__.py index 13563611..40c2d467 100644 --- a/pip_audit/__init__.py +++ b/pip_audit/__init__.py @@ -2,4 +2,4 @@ The `pip_audit` APIs. """ -__version__ = "2.6.3" +__version__ = "2.7.0"