Skip to content

Commit 60067d4

Browse files
authored
Prep 2.6.0 (#641)
1 parent 69303c7 commit 60067d4

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
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.5.6
30+
rev: v2.6.0
3131
hooks:
3232
- id: pip-audit
3333
- repo: https://github.com/rhysd/actionlint

CHANGELOG.md

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

99
## [Unreleased]
1010

11-
### Changed
11+
## [2.6.0]
12+
13+
### Added
1214

1315
* Added option to skip dependency resolution via `pip` with the `--disable-pip`
1416
flag. This option can only be used with hashed requirements files or when the
15-
`--no-deps` flag has been provided.
17+
`--no-deps` flag has been provided
1618
([#610](https://github.com/pypa/pip-audit/pull/610))
1719

1820
## [2.5.6]
@@ -531,7 +533,8 @@ All versions prior to 0.0.9 are untracked.
531533
dependency errors ([#146](https://github.com/pypa/pip-audit/pull/146))
532534

533535
<!-- Release URLs -->
534-
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.5.6...HEAD
536+
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.6.0...HEAD
537+
[2.6.0]: https://github.com/pypa/pip-audit/compare/v2.5.6...v2.6.0
535538
[2.5.6]: https://github.com/pypa/pip-audit/compare/v2.5.5...v2.5.6
536539
[2.5.5]: https://github.com/pypa/pip-audit/compare/v2.5.4...v2.5.5
537540
[2.5.4]: https://github.com/pypa/pip-audit/compare/v2.5.3...v2.5.4

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.5.6
109+
rev: v2.6.0
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.5.6"
5+
__version__ = "2.6.0"

0 commit comments

Comments
 (0)