Skip to content

Commit 744d23b

Browse files
Prepare release 23.10.1 (#3969)
* Prepare release 23.10.1 * Update docs/usage_and_configuration/the_basics.md Add missed version string We need to automate or remove this from docs ... It's painful. Co-authored-by: Jelle Zijlstra <[email protected]> --------- Co-authored-by: Jelle Zijlstra <[email protected]>
1 parent 8de4be5 commit 744d23b

File tree

3 files changed

+9
-36
lines changed

3 files changed

+9
-36
lines changed

CHANGES.md

Lines changed: 4 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,30 @@
11
# Change Log
22

3-
## Unreleased
3+
## 23.10.1
44

55
### Highlights
66

7-
<!-- Include any especially major or disruptive changes here -->
8-
9-
### Stable style
10-
11-
<!-- Changes that affect Black's stable style -->
7+
- Maintanence release to get a fix out for GitHub Action edge case (#3957)
128

139
### Preview style
1410

1511
- Fix merging implicit multiline strings that have inline comments (#3956)
1612
- Allow empty first line after block open before a comment or compound statement (#3967)
1713

18-
### Configuration
19-
20-
<!-- Changes to how Black can be configured -->
21-
2214
### Packaging
2315

24-
<!-- Changes to how Black is packaged, such as dependency requirements -->
25-
2616
- Change Dockerfile to hatch + compile black (#3965)
2717

28-
### Parser
29-
30-
<!-- Changes to the parser or to version autodetection -->
31-
32-
### Performance
33-
34-
<!-- Changes that improve Black's performance. -->
35-
36-
### Output
37-
38-
<!-- Changes to Black's terminal output and error messages -->
39-
40-
### _Blackd_
41-
42-
<!-- Changes to blackd -->
43-
4418
### Integrations
4519

4620
- The summary output for GitHub workflows is now suppressible using the `summary`
4721
parameter. (#3958)
48-
4922
- Fix the action failing when Black check doesn't pass (#3957)
5023

5124
### Documentation
5225

53-
<!-- Major changes to documentation and policies. Small docs changes
54-
don't need a changelog entry. -->
26+
- It is known Windows documentation CI is broken
27+
https://github.com/psf/black/issues/3968
5528

5629
## 23.10.0
5730

docs/integrations/source_version_control.md

Lines changed: 2 additions & 2 deletions
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: 23.10.0
11+
rev: 23.10.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: 23.10.0
38+
rev: 23.10.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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ configuration file for consistent results across environments.
194194

195195
```console
196196
$ black --version
197-
black, 23.10.0 (compiled: yes)
198-
$ black --required-version 23.10.0 -c "format = 'this'"
197+
black, 23.10.1 (compiled: yes)
198+
$ black --required-version 23.10.1 -c "format = 'this'"
199199
format = "this"
200200
$ black --required-version 31.5b2 -c "still = 'beta?!'"
201201
Oh no! 💥 💔 💥 The required version does not match the running version!
@@ -286,7 +286,7 @@ You can check the version of _Black_ you have installed using the `--version` fl
286286

287287
```console
288288
$ black --version
289-
black, 23.10.0
289+
black, 23.10.1
290290
```
291291

292292
#### `--config`

0 commit comments

Comments
 (0)