Skip to content

Commit

Permalink
6.11.0 changelog (#1748)
Browse files Browse the repository at this point in the history
  • Loading branch information
atugushev committed Dec 1, 2022
1 parent bcfd1dc commit eb48193
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 20 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 6.11.0 (2022-11-30)

Features:

- Add `pyproject.toml` file ([#1643](https://github.com/jazzband/pip-tools/pull/1643)).
Thanks @otherJL0
- Support build isolation using `setuptools/pyproject.toml` requirement files
([#1727](https://github.com/jazzband/pip-tools/pull/1727)). Thanks @atugushev

Bug Fixes:

- Improve punctuation/grammar with `pip-compile` header
([#1547](https://github.com/jazzband/pip-tools/pull/1547)). Thanks @blueyed
- Generate hashes for all available candidates
([#1723](https://github.com/jazzband/pip-tools/pull/1723)). Thanks @neykov

Other Changes:

- Bump click minimum version to `>= 8`
([#1733](https://github.com/jazzband/pip-tools/pull/1733)). Thanks @atugushev
- Bump pip minimum version to `>= 22.2`
([#1729](https://github.com/jazzband/pip-tools/pull/1729)). Thanks @atugushev

## 6.10.0 (2022-11-13)

Features:
Expand Down
42 changes: 22 additions & 20 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ Sample ``.pre-commit-config.yaml``:
repos:
- repo: https://github.com/jazzband/pip-tools
rev: 6.10.0
rev: 6.11.0
hooks:
- id: pip-compile
Expand All @@ -427,7 +427,7 @@ You might want to customize ``pip-compile`` args by configuring ``args`` and/or
repos:
- repo: https://github.com/jazzband/pip-tools
rev: 6.10.0
rev: 6.11.0
hooks:
- id: pip-compile
files: ^requirements/production\.(in|txt)$
Expand All @@ -439,7 +439,7 @@ If you have multiple requirement files make sure you create a hook for each file
repos:
- repo: https://github.com/jazzband/pip-tools
rev: 6.10.0
rev: 6.11.0
hooks:
- id: pip-compile
name: pip-compile setup.py
Expand Down Expand Up @@ -596,20 +596,22 @@ The table below summarizes the latest ``pip-tools`` versions with the required
``pip`` and Python versions. Generally, ``pip-tools`` supports the same Python
versions as the required ``pip`` versions.

+---------------+----------------+----------------+
| pip-tools | pip | Python |
+===============+================+================+
| 4.5.* | 8.1.3 - 20.0.2 | 2.7, 3.5 - 3.8 |
+---------------+----------------+----------------+
| 5.0.0 - 5.3.0 | 20.0 - 20.1.1 | 2.7, 3.5 - 3.8 |
+---------------+----------------+----------------+
| 5.4.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.8 |
+---------------+----------------+----------------+
| 5.5.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.9 |
+---------------+----------------+----------------+
| 6.0.0 - 6.3.1 | 20.3 - 21.2.* | 3.6 - 3.9 |
+---------------+----------------+----------------+
| 6.4.0 | 21.2 - 21.3.* | 3.6 - 3.10 |
+---------------+----------------+----------------+
| 6.5.0+ | 21.2+ | 3.7 - 3.10 |
+---------------+----------------+----------------+
+----------------+----------------+----------------+
| pip-tools | pip | Python |
+================+================+================+
| 4.5.* | 8.1.3 - 20.0.2 | 2.7, 3.5 - 3.8 |
+----------------+----------------+----------------+
| 5.0.0 - 5.3.0 | 20.0 - 20.1.1 | 2.7, 3.5 - 3.8 |
+----------------+----------------+----------------+
| 5.4.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.8 |
+----------------+----------------+----------------+
| 5.5.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.9 |
+----------------+----------------+----------------+
| 6.0.0 - 6.3.1 | 20.3 - 21.2.* | 3.6 - 3.9 |
+----------------+----------------+----------------+
| 6.4.0 | 21.2 - 21.3.* | 3.6 - 3.10 |
+----------------+----------------+----------------+
| 6.5.0 - 6.10.0 | 21.2 - 22.3.* | 3.7 - 3.11 |
+----------------+----------------+----------------+
| 6.11.0+ | 22.2+ | 3.7 - 3.11 |
+----------------+----------------+----------------+

0 comments on commit eb48193

Please sign in to comment.