Skip to content

Commit e026c93

Browse files
Prepare release 24.1.1 (#4186)
1 parent 79fc115 commit e026c93

File tree

3 files changed

+8
-46
lines changed

3 files changed

+8
-46
lines changed

CHANGES.md

+3-41
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,19 @@
11
# Change Log
22

3-
## Unreleased
3+
## 24.1.1
44

5-
### Highlights
6-
7-
<!-- Include any especially major or disruptive changes here -->
8-
9-
### Stable style
10-
11-
<!-- Changes that affect Black's stable style -->
5+
Bugfix release to fix a bug that made Black unusable on certain file systems with strict
6+
limits on path length.
127

138
### Preview style
149

15-
<!-- Changes that affect Black's preview style -->
16-
1710
- Consistently add trailing comma on typed parameters (#4164)
1811

1912
### Configuration
2013

21-
<!-- Changes to how Black can be configured -->
22-
2314
- Shorten the length of the name of the cache file to fix crashes on file systems that
2415
do not support long paths (#4176)
2516

26-
### Packaging
27-
28-
<!-- Changes to how Black is packaged, such as dependency requirements -->
29-
30-
### Parser
31-
32-
<!-- Changes to the parser or to version autodetection -->
33-
34-
### Performance
35-
36-
<!-- Changes that improve Black's performance. -->
37-
38-
### Output
39-
40-
<!-- Changes to Black's terminal output and error messages -->
41-
42-
### _Blackd_
43-
44-
<!-- Changes to blackd -->
45-
46-
### Integrations
47-
48-
<!-- For example, Docker, GitHub Actions, pre-commit, editors -->
49-
50-
### Documentation
51-
52-
<!-- Major changes to documentation and policies. Small docs changes
53-
don't need a changelog entry. -->
54-
5517
## 24.1.0
5618

5719
### Highlights

docs/integrations/source_version_control.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Use [pre-commit](https://pre-commit.com/). Once you
88
repos:
99
# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
1010
- repo: https://github.com/psf/black-pre-commit-mirror
11-
rev: 24.1.0
11+
rev: 24.1.1
1212
hooks:
1313
- id: black
1414
# It is recommended to specify the latest version of Python
@@ -35,7 +35,7 @@ include Jupyter Notebooks. To use this hook, simply replace the hook's `id: blac
3535
repos:
3636
# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
3737
- repo: https://github.com/psf/black-pre-commit-mirror
38-
rev: 24.1.0
38+
rev: 24.1.1
3939
hooks:
4040
- id: black-jupyter
4141
# It is recommended to specify the latest version of Python

docs/usage_and_configuration/the_basics.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ configuration file for consistent results across environments.
266266

267267
```console
268268
$ black --version
269-
black, 24.1.0 (compiled: yes)
270-
$ black --required-version 24.1.0 -c "format = 'this'"
269+
black, 24.1.1 (compiled: yes)
270+
$ black --required-version 24.1.1 -c "format = 'this'"
271271
format = "this"
272272
$ black --required-version 31.5b2 -c "still = 'beta?!'"
273273
Oh no! 💥 💔 💥 The required version does not match the running version!
@@ -363,7 +363,7 @@ You can check the version of _Black_ you have installed using the `--version` fl
363363

364364
```console
365365
$ black --version
366-
black, 24.1.0
366+
black, 24.1.1
367367
```
368368

369369
#### `--config`

0 commit comments

Comments
 (0)