Skip to content

Commit

Permalink
prep 2.6.2 (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw authored Dec 19, 2023
1 parent 9e77b9a commit 3e2cb18
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/pypa/pip-audit
rev: v2.6.1
rev: v2.6.2
hooks:
- id: pip-audit
- repo: https://github.com/rhysd/actionlint
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked.

## [Unreleased]

## [2.6.2]

### Changed

* `pip-audit`'s minimum Python version is now 3.8.
Expand Down Expand Up @@ -550,7 +552,8 @@ All versions prior to 0.0.9 are untracked.
dependency errors ([#146](https://github.com/pypa/pip-audit/pull/146))

<!-- Release URLs -->
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.6.0...HEAD
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.6.2...HEAD
[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
[2.6.0]: https://github.com/pypa/pip-audit/compare/v2.5.6...v2.6.0
[2.5.6]: https://github.com/pypa/pip-audit/compare/v2.5.5...v2.5.6
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
rev: v2.6.2
hooks:
- id: pip-audit
args: ["-r", "requirements.txt"]
Expand Down
2 changes: 1 addition & 1 deletion pip_audit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
The `pip_audit` APIs.
"""

__version__ = "2.6.1"
__version__ = "2.6.2"
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ classifiers = [
]
dependencies = [
"CacheControl[filecache] >= 0.13.0",
# NOTE(ww): Release 2.5.0 is broken, subsequent 2.5.x releases fix it.
# See: https://github.com/CycloneDX/cyclonedx-python-lib/issues/245
"cyclonedx-python-lib >= 4,< 6",
"html5lib>=1.1",
"packaging>=23.0.0", # https://github.com/pypa/pip-audit/issues/464
"packaging>=23.0.0", # https://github.com/pypa/pip-audit/issues/464
"pip-api>=0.0.28",
"pip-requirements-parser>=32.0.0",
"requests >= 2.31.0",
Expand Down

0 comments on commit 3e2cb18

Please sign in to comment.