Skip to content

Commit eb48193

Browse files
authored
6.11.0 changelog (#1748)
1 parent bcfd1dc commit eb48193

2 files changed

Lines changed: 45 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 6.11.0 (2022-11-30)
2+
3+
Features:
4+
5+
- Add `pyproject.toml` file ([#1643](https://github.com/jazzband/pip-tools/pull/1643)).
6+
Thanks @otherJL0
7+
- Support build isolation using `setuptools/pyproject.toml` requirement files
8+
([#1727](https://github.com/jazzband/pip-tools/pull/1727)). Thanks @atugushev
9+
10+
Bug Fixes:
11+
12+
- Improve punctuation/grammar with `pip-compile` header
13+
([#1547](https://github.com/jazzband/pip-tools/pull/1547)). Thanks @blueyed
14+
- Generate hashes for all available candidates
15+
([#1723](https://github.com/jazzband/pip-tools/pull/1723)). Thanks @neykov
16+
17+
Other Changes:
18+
19+
- Bump click minimum version to `>= 8`
20+
([#1733](https://github.com/jazzband/pip-tools/pull/1733)). Thanks @atugushev
21+
- Bump pip minimum version to `>= 22.2`
22+
([#1729](https://github.com/jazzband/pip-tools/pull/1729)). Thanks @atugushev
23+
124
## 6.10.0 (2022-11-13)
225

326
Features:

README.rst

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ Sample ``.pre-commit-config.yaml``:
417417
418418
repos:
419419
- repo: https://github.com/jazzband/pip-tools
420-
rev: 6.10.0
420+
rev: 6.11.0
421421
hooks:
422422
- id: pip-compile
423423
@@ -427,7 +427,7 @@ You might want to customize ``pip-compile`` args by configuring ``args`` and/or
427427
428428
repos:
429429
- repo: https://github.com/jazzband/pip-tools
430-
rev: 6.10.0
430+
rev: 6.11.0
431431
hooks:
432432
- id: pip-compile
433433
files: ^requirements/production\.(in|txt)$
@@ -439,7 +439,7 @@ If you have multiple requirement files make sure you create a hook for each file
439439
440440
repos:
441441
- repo: https://github.com/jazzband/pip-tools
442-
rev: 6.10.0
442+
rev: 6.11.0
443443
hooks:
444444
- id: pip-compile
445445
name: pip-compile setup.py
@@ -596,20 +596,22 @@ The table below summarizes the latest ``pip-tools`` versions with the required
596596
``pip`` and Python versions. Generally, ``pip-tools`` supports the same Python
597597
versions as the required ``pip`` versions.
598598

599-
+---------------+----------------+----------------+
600-
| pip-tools | pip | Python |
601-
+===============+================+================+
602-
| 4.5.* | 8.1.3 - 20.0.2 | 2.7, 3.5 - 3.8 |
603-
+---------------+----------------+----------------+
604-
| 5.0.0 - 5.3.0 | 20.0 - 20.1.1 | 2.7, 3.5 - 3.8 |
605-
+---------------+----------------+----------------+
606-
| 5.4.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.8 |
607-
+---------------+----------------+----------------+
608-
| 5.5.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.9 |
609-
+---------------+----------------+----------------+
610-
| 6.0.0 - 6.3.1 | 20.3 - 21.2.* | 3.6 - 3.9 |
611-
+---------------+----------------+----------------+
612-
| 6.4.0 | 21.2 - 21.3.* | 3.6 - 3.10 |
613-
+---------------+----------------+----------------+
614-
| 6.5.0+ | 21.2+ | 3.7 - 3.10 |
615-
+---------------+----------------+----------------+
599+
+----------------+----------------+----------------+
600+
| pip-tools | pip | Python |
601+
+================+================+================+
602+
| 4.5.* | 8.1.3 - 20.0.2 | 2.7, 3.5 - 3.8 |
603+
+----------------+----------------+----------------+
604+
| 5.0.0 - 5.3.0 | 20.0 - 20.1.1 | 2.7, 3.5 - 3.8 |
605+
+----------------+----------------+----------------+
606+
| 5.4.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.8 |
607+
+----------------+----------------+----------------+
608+
| 5.5.0 | 20.1 - 20.3.* | 2.7, 3.5 - 3.9 |
609+
+----------------+----------------+----------------+
610+
| 6.0.0 - 6.3.1 | 20.3 - 21.2.* | 3.6 - 3.9 |
611+
+----------------+----------------+----------------+
612+
| 6.4.0 | 21.2 - 21.3.* | 3.6 - 3.10 |
613+
+----------------+----------------+----------------+
614+
| 6.5.0 - 6.10.0 | 21.2 - 22.3.* | 3.7 - 3.11 |
615+
+----------------+----------------+----------------+
616+
| 6.11.0+ | 22.2+ | 3.7 - 3.11 |
617+
+----------------+----------------+----------------+

0 commit comments

Comments
 (0)