From 60ac79b54d676f055e5da3d6ea05e556f402f7e5 Mon Sep 17 00:00:00 2001 From: Albert Tugushev Date: Fri, 14 Jul 2023 19:34:56 +0200 Subject: [PATCH] Release 7.0.0 (#1911) --- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 6 +++--- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 433d96d88..1aff10c08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 7.0.0 (2023-07-14) + +Backwards Incompatible Changes: + +- Default to `--resolver=backtracking` + ([#1897](https://github.com/jazzband/pip-tools/pull/1897)). Thanks @atugushev +- Drop support for Python 3.7 + ([#1879](https://github.com/jazzband/pip-tools/pull/1879)). Thanks @chrysle + +Features: + +- Add support for `pip==23.2` where refactored out `DEV_PKGS` + ([#1906](https://github.com/jazzband/pip-tools/pull/1906)). Thanks @atugushev +- Add `--no-config` option ([#1896](https://github.com/jazzband/pip-tools/pull/1896)). + Thanks @atugushev + +Bug Fixes: + +- Sync direct references with hashes + ([#1885](https://github.com/jazzband/pip-tools/pull/1885)). Thanks @siddharthab +- Fix missing `via`s when more than two input files are used + ([#1890](https://github.com/jazzband/pip-tools/pull/1890)). Thanks @lpulley + ## 6.14.0 (2023-06-28) Features: diff --git a/README.md b/README.md index faa9a4056..d09b9320d 100644 --- a/README.md +++ b/README.md @@ -415,7 +415,7 @@ Sample `.pre-commit-config.yaml`: ```yaml repos: - repo: https://github.com/jazzband/pip-tools - rev: 6.14.0 + rev: 7.0.0 hooks: - id: pip-compile ``` @@ -425,7 +425,7 @@ You might want to customize `pip-compile` args by configuring `args` and/or `fil ```yaml repos: - repo: https://github.com/jazzband/pip-tools - rev: 6.14.0 + rev: 7.0.0 hooks: - id: pip-compile files: ^requirements/production\.(in|txt)$ @@ -437,7 +437,7 @@ If you have multiple requirement files make sure you create a hook for each file ```yaml repos: - repo: https://github.com/jazzband/pip-tools - rev: 6.14.0 + rev: 7.0.0 hooks: - id: pip-compile name: pip-compile setup.py