Style
- Fix unstable formatting involving
#fmt: skip
and# fmt:skip
comments (notice the lack of spaces) (#2970)
Preview style
- Docstring quotes are no longer moved if it would violate the line length limit (#3044)
- Parentheses around return annotations are now managed (#2990)
- Remove unnecessary parentheses around awaited objects (#2991)
- Remove unnecessary parentheses in
with
statements (#2926) - Remove trailing newlines after code block open (#3035)
Integrations
- Add
scripts/migrate-black.py
script to ease introduction of Black to a Git project (#3038)
Output
- Output Python version and implementation as part of
--version
flag (#2997)
Packaging
- Use
tomli
instead oftomllib
on Python 3.11 builds wheretomllib
is not available (#2987)
Parser
- PEP 654 syntax (for example,
except *ExceptionGroup:
) is now supported (#3016) - PEP 646 syntax (for example,
Array[Batch, *Shape]
ordef fn(*args: *T) -> None
) is now supported (#3071)
Vim Plugin
- Fix
strtobool
function. It didn't parse true/on/false/off. (#3025)
Full Changelog: 22.3.0...22.6.0
Thank you!
- @jpy-git for improving our parentheses formatting significantly
- @siuryan for fixing a fmt: skip bug, making it a little less annoying to use :)
- @isidentical for implementing support for PEP 654 and 646 syntax
- @defntvdm for fixing our vim plugin, especially as we (the maintainers) don't really know vim script sadly
- @idorrington92 for fixing the docstring bug where Black would move the closing quotes causing it to violate the line length limit (whoops!)
- @hbrunn for contributing the migrate-black script
- @saroad2 for improving newline handling after code blocks and test infrastructure improvements
... and everyone else who contributed documentation, tests, or other improvements to the Black project!
Finally congrats to first contributors!
- @kolibril13 made their first contribution in #2982
- @siuryan made their first contribution in #2970
- @dignissimus made their first contribution in #3007
- @JiriKr made their first contribution in #3023
- @defntvdm made their first contribution in #3025
- @naveensrinivasan made their first contribution in #3043
- @idorrington92 made their first contribution in #3044
- @laundmo made their first contribution in #3063
- @ysk24ok made their first contribution in #3070
- @hbrunn made their first contribution in #3038
- @vivekvashist made their first contribution in #3096
- @nateprewitt made their first contribution in #3125
- @yilei made their first contribution in #3135