Skip to content

Commit e7fb048

Browse files
Prepare release 24.4.1 (#4328)
1 parent 3f0f8f1 commit e7fb048

File tree

3 files changed

+6
-43
lines changed

3 files changed

+6
-43
lines changed

CHANGES.md

+1-38
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,24 @@
11
# Change Log
22

3-
## Unreleased
3+
## 24.4.1
44

55
### Highlights
66

7-
<!-- Include any especially major or disruptive changes here -->
8-
97
- Add support for the new Python 3.12 f-string syntax introduced by PEP 701 (#3822)
108

119
### Stable style
1210

13-
<!-- Changes that affect Black's stable style -->
14-
1511
- Fix crash involving indented dummy functions containing newlines (#4318)
1612

17-
### Preview style
18-
19-
<!-- Changes that affect Black's preview style -->
20-
21-
### Configuration
22-
23-
<!-- Changes to how Black can be configured -->
24-
25-
### Packaging
26-
27-
<!-- Changes to how Black is packaged, such as dependency requirements -->
28-
2913
### Parser
3014

31-
<!-- Changes to the parser or to version autodetection -->
32-
3315
- Add support for type parameter defaults, a new syntactic feature added to Python 3.13
3416
by PEP 696 (#4327)
3517

36-
### Performance
37-
38-
<!-- Changes that improve Black's performance. -->
39-
40-
### Output
41-
42-
<!-- Changes to Black's terminal output and error messages -->
43-
44-
### _Blackd_
45-
46-
<!-- Changes to blackd -->
47-
4818
### Integrations
4919

50-
<!-- For example, Docker, GitHub Actions, pre-commit, editors -->
51-
5220
- Github Action now works even when `git archive` is skipped (#4313)
5321

54-
### Documentation
55-
56-
<!-- Major changes to documentation and policies. Small docs changes
57-
don't need a changelog entry. -->
58-
5922
## 24.4.0
6023

6124
### Stable style

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.4.0
11+
rev: 24.4.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.4.0
38+
rev: 24.4.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
@@ -269,8 +269,8 @@ configuration file for consistent results across environments.
269269

270270
```console
271271
$ black --version
272-
black, 24.4.0 (compiled: yes)
273-
$ black --required-version 24.4.0 -c "format = 'this'"
272+
black, 24.4.1 (compiled: yes)
273+
$ black --required-version 24.4.1 -c "format = 'this'"
274274
format = "this"
275275
$ black --required-version 31.5b2 -c "still = 'beta?!'"
276276
Oh no! 💥 💔 💥 The required version does not match the running version!
@@ -366,7 +366,7 @@ You can check the version of _Black_ you have installed using the `--version` fl
366366

367367
```console
368368
$ black --version
369-
black, 24.4.0
369+
black, 24.4.1
370370
```
371371

372372
#### `--config`

0 commit comments

Comments
 (0)