diff --git a/CHANGES.md b/CHANGES.md index b1772fd05be..d7acf6b7b9d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,9 @@ # Change Log -## Unreleased +## 25.1.0 ### Highlights - - This release introduces the new 2025 stable style (#4558), stabilizing the following changes: @@ -27,8 +25,6 @@ The following changes were not in any previous release: ### Stable style - - - Fix formatting cells in IPython notebooks with magic methods and starting or trailing empty lines (#4484) - Fix crash when formatting `with` statements containing tuple generators/unpacking @@ -36,8 +32,6 @@ The following changes were not in any previous release: ### Preview style - - - Fix/remove string merging changing f-string quotes on f-strings with internal quotes (#4498) - Collapse multiple empty lines after an import into one (#4489) @@ -45,47 +39,20 @@ The following changes were not in any previous release: parentheses around long dictionary values (#4377) - Move `wrap_long_dict_values_in_parens` from the unstable to preview style (#4561) -### Configuration - - - ### Packaging - - - Store license identifier inside the `License-Expression` metadata field, see [PEP 639](https://peps.python.org/pep-0639/). (#4479) -### Parser - - - ### Performance - - - Speed up the `is_fstring_start` function in Black's tokenizer (#4541) -### Output - - - -### _Blackd_ - - - ### Integrations - - - If using stdin with `--stdin-filename` set to a force excluded path, stdin won't be formatted. (#4539) -### Documentation - - - ## 24.10.0 ### Highlights diff --git a/docs/integrations/source_version_control.md b/docs/integrations/source_version_control.md index 0cf280faa6d..0e7cf324d63 100644 --- a/docs/integrations/source_version_control.md +++ b/docs/integrations/source_version_control.md @@ -8,7 +8,7 @@ Use [pre-commit](https://pre-commit.com/). Once you repos: # Using this mirror lets us use mypyc-compiled black, which is about 2x faster - repo: https://github.com/psf/black-pre-commit-mirror - rev: 24.10.0 + rev: 25.1.0 hooks: - id: black # 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 repos: # Using this mirror lets us use mypyc-compiled black, which is about 2x faster - repo: https://github.com/psf/black-pre-commit-mirror - rev: 24.10.0 + rev: 25.1.0 hooks: - id: black-jupyter # It is recommended to specify the latest version of Python diff --git a/docs/usage_and_configuration/the_basics.md b/docs/usage_and_configuration/the_basics.md index 6a6c939bf71..197f4feed94 100644 --- a/docs/usage_and_configuration/the_basics.md +++ b/docs/usage_and_configuration/the_basics.md @@ -269,8 +269,8 @@ configuration file for consistent results across environments. ```console $ black --version -black, 24.10.0 (compiled: yes) -$ black --required-version 24.10.0 -c "format = 'this'" +black, 25.1.0 (compiled: yes) +$ black --required-version 25.1.0 -c "format = 'this'" format = "this" $ black --required-version 31.5b2 -c "still = 'beta?!'" 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 ```console $ black --version -black, 24.10.0 +black, 25.1.0 ``` #### `--config`