Skip to content

Commit 16275d2

Browse files
authored
Prepare CHANGES.md for release 21.8b0 (#2458)
Hopefully my first release doesn't end up in flames πŸ”₯ Commit history before merge: * Prepare CHANGES.md for release 21.8b0 * I need to add a check for this too.
1 parent a5bb6e0 commit 16275d2

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

β€ŽCHANGES.mdβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## Unreleased
3+
## 21.8b0
44

55
### _Black_
66

@@ -17,7 +17,8 @@
1717

1818
### _Blackd_
1919

20-
- Replace sys.exit(-1) with raise ImportError (#2440)
20+
- Replace sys.exit(-1) with raise ImportError as it plays more nicely with tools that
21+
scan installed packages (#2440)
2122

2223
### Integrations
2324

β€Ždocs/integrations/source_version_control.mdβ€Ž

Lines changed: 1 addition & 1 deletion
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: 21.7b0
10+
rev: 21.8b0
1111
hooks:
1212
- id: black
1313
language_version: python3 # Should be a command that runs python3.6+

β€Ždocs/usage_and_configuration/the_basics.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,13 @@ You can check the version of _Black_ you have installed using the `--version` fl
173173

174174
```console
175175
$ black --version
176-
black, version 21.5b0
176+
black, version 21.8b0
177177
```
178178

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

181181
```console
182-
$ black --required-version 21.5b2 -c "format = 'this'"
182+
$ black --required-version 21.8b0 -c "format = 'this'"
183183
format = "this"
184184
$ black --required-version 31.5b2 -c "still = 'beta?!'"
185185
Oh no! πŸ’₯ πŸ’” πŸ’₯ The required version does not match the running version!

0 commit comments

Comments
Β (0)