Skip to content

Commit

Permalink
Prep 2.6.0 (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw committed Jul 2, 2023
1 parent 69303c7 commit 60067d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.5.6
rev: v2.6.0
hooks:
- id: pip-audit
- repo: https://github.com/rhysd/actionlint
Expand Down
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ All versions prior to 0.0.9 are untracked.

## [Unreleased]

### Changed
## [2.6.0]

### Added

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

## [2.5.6]
Expand Down Expand Up @@ -531,7 +533,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.5.6...HEAD
[Unreleased]: https://github.com/pypa/pip-audit/compare/v2.6.0...HEAD
[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
[2.5.5]: https://github.com/pypa/pip-audit/compare/v2.5.4...v2.5.5
[2.5.4]: https://github.com/pypa/pip-audit/compare/v2.5.3...v2.5.4
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.5.6
rev: v2.6.0
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.5.6"
__version__ = "2.6.0"

0 comments on commit 60067d4

Please sign in to comment.