Skip to content

Commit 3e2cb18

Browse files
authored
prep 2.6.2 (#711)
1 parent 9e77b9a commit 3e2cb18

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
hooks:
2828
- id: isort
2929
- repo: https://github.com/pypa/pip-audit
30-
rev: v2.6.1
30+
rev: v2.6.2
3131
hooks:
3232
- id: pip-audit
3333
- repo: https://github.com/rhysd/actionlint

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ All versions prior to 0.0.9 are untracked.
88

99
## [Unreleased]
1010

11+
## [2.6.2]
12+
1113
### Changed
1214

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

552554
<!-- Release URLs -->
553-
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.6.0...HEAD
555+
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.6.2...HEAD
556+
[2.6.2]: https://github.com/pypa/pip-audit/compare/v2.6.1...v2.6.2
554557
[2.6.1]: https://github.com/pypa/pip-audit/compare/v2.6.0...v2.6.1
555558
[2.6.0]: https://github.com/pypa/pip-audit/compare/v2.5.6...v2.6.0
556559
[2.5.6]: https://github.com/pypa/pip-audit/compare/v2.5.5...v2.5.6

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ For example, using `pip-audit` via `pre-commit` to audit a requirements file:
106106

107107
```yaml
108108
- repo: https://github.com/pypa/pip-audit
109-
rev: v2.6.1
109+
rev: v2.6.2
110110
hooks:
111111
- id: pip-audit
112112
args: ["-r", "requirements.txt"]

pip_audit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
The `pip_audit` APIs.
33
"""
44

5-
__version__ = "2.6.1"
5+
__version__ = "2.6.2"

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ classifiers = [
2828
]
2929
dependencies = [
3030
"CacheControl[filecache] >= 0.13.0",
31-
# NOTE(ww): Release 2.5.0 is broken, subsequent 2.5.x releases fix it.
32-
# See: https://github.com/CycloneDX/cyclonedx-python-lib/issues/245
3331
"cyclonedx-python-lib >= 4,< 6",
3432
"html5lib>=1.1",
35-
"packaging>=23.0.0", # https://github.com/pypa/pip-audit/issues/464
33+
"packaging>=23.0.0", # https://github.com/pypa/pip-audit/issues/464
3634
"pip-api>=0.0.28",
3735
"pip-requirements-parser>=32.0.0",
3836
"requests >= 2.31.0",

0 commit comments

Comments
 (0)