Skip to content

Commit 9b2b048

Browse files
Prepare release 23.3.0 (#3625)
1 parent bf5abdb commit 9b2b048

File tree

3 files changed

+48
-24
lines changed

3 files changed

+48
-24
lines changed

CHANGES.md

+46-22
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,10 @@
1010

1111
<!-- Changes that affect Black's stable style -->
1212

13-
- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line
14-
added when they are right after another import line (#3610)
15-
1613
### Preview style
1714

1815
<!-- Changes that affect Black's preview style -->
1916

20-
- Add trailing commas to collection literals even if there's a comment after the last
21-
entry (#3393)
22-
- `async def`, `async for`, and `async with` statements are now formatted consistently
23-
compared to their non-async version. (#3609)
24-
- `with` statements that contain two context managers will be consistently wrapped in
25-
parentheses (#3589)
26-
- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/)
27-
(#3445)
28-
- Now long string literals can be split after East Asian commas and periods (`` U+3001
29-
IDEOGRAPHIC COMMA, `` U+3002 IDEOGRAPHIC FULL STOP, & `` U+FF0C FULLWIDTH COMMA)
30-
besides before spaces (#3445)
31-
- For stubs, enforce one blank line after a nested class with a body other than just
32-
`...` (#3564)
33-
3417
### Configuration
3518

3619
<!-- Changes to how Black can be configured -->
@@ -43,8 +26,6 @@
4326

4427
<!-- Changes to the parser or to version autodetection -->
4528

46-
- Added support for formatting files with invalid type comments (#3594)
47-
4829
### Performance
4930

5031
<!-- Changes that improve Black's performance. -->
@@ -61,14 +42,57 @@
6142

6243
<!-- For example, Docker, GitHub Actions, pre-commit, editors -->
6344

64-
- Update GitHub Action to use the version of Black equivalent to action's version if
65-
version input is not specified (#3543)
66-
6745
### Documentation
6846

6947
<!-- Major changes to documentation and policies. Small docs changes
7048
don't need a changelog entry. -->
7149

50+
## 23.3.0
51+
52+
### Highlights
53+
54+
This release fixes a longstanding confusing behavior in Black's GitHub action, where the
55+
version of the action did not determine the version of Black being run (issue #3382). In
56+
addition, there is a small bug fix around imports and a number of improvements to the
57+
preview style.
58+
59+
Please try out the
60+
[preview style](https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html#preview-style)
61+
with `black --preview` and tell us your feedback. All changes in the preview style are
62+
expected to become part of Black's stable style in January 2024.
63+
64+
### Stable style
65+
66+
- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line
67+
added when they are right after another import line (#3610)
68+
69+
### Preview style
70+
71+
- Add trailing commas to collection literals even if there's a comment after the last
72+
entry (#3393)
73+
- `async def`, `async for`, and `async with` statements are now formatted consistently
74+
compared to their non-async version. (#3609)
75+
- `with` statements that contain two context managers will be consistently wrapped in
76+
parentheses (#3589)
77+
- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/)
78+
(#3445)
79+
- Now long string literals can be split after East Asian commas and periods (`` U+3001
80+
IDEOGRAPHIC COMMA, `` U+3002 IDEOGRAPHIC FULL STOP, & `` U+FF0C FULLWIDTH COMMA)
81+
besides before spaces (#3445)
82+
- For stubs, enforce one blank line after a nested class with a body other than just
83+
`...` (#3564)
84+
85+
### Parser
86+
87+
- Added support for formatting files with invalid type comments (#3594)
88+
89+
### Integrations
90+
91+
- Update GitHub Action to use the version of Black equivalent to action's version if
92+
version input is not specified (#3543)
93+
94+
### Documentation
95+
7296
- Document that only the most recent release is supported for security issues;
7397
vulnerabilities should be reported through Tidelift (#3612)
7498

docs/integrations/source_version_control.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Use [pre-commit](https://pre-commit.com/). Once you
77
```yaml
88
repos:
99
- repo: https://github.com/psf/black
10-
rev: 23.1.0
10+
rev: 23.3.0
1111
hooks:
1212
- id: black
1313
# It is recommended to specify the latest version of Python

docs/usage_and_configuration/the_basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ You can check the version of _Black_ you have installed using the `--version` fl
178178

179179
```console
180180
$ black --version
181-
black, version 23.1.0
181+
black, version 23.3.0
182182
```
183183

184184
An option to require a specific version to be running is also provided.

0 commit comments

Comments
 (0)