From: Jelle Zijlstra Date: Tue, 14 Sep 2021 02:23:11 +0000 (-0700) Subject: Update CHANGES.md for 21.9b0 release (#2494) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/911470a610e47d9da5ea938b0887c3df62819b85 Update CHANGES.md for 21.9b0 release (#2494) --- diff --git a/CHANGES.md b/CHANGES.md index 4b5a291..6ff488b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Change Log -## Unreleased +## 21.9b0 ### Packaging diff --git a/docs/integrations/source_version_control.md b/docs/integrations/source_version_control.md index 220f429..b07796f 100644 --- a/docs/integrations/source_version_control.md +++ b/docs/integrations/source_version_control.md @@ -7,7 +7,7 @@ Use [pre-commit](https://pre-commit.com/). Once you ```yaml repos: - repo: https://github.com/psf/black - rev: 21.8b0 + rev: 21.9b0 hooks: - id: black language_version: python3 # Should be a command that runs python3.6+ diff --git a/docs/usage_and_configuration/the_basics.md b/docs/usage_and_configuration/the_basics.md index 4b68ad7..49268b4 100644 --- a/docs/usage_and_configuration/the_basics.md +++ b/docs/usage_and_configuration/the_basics.md @@ -173,13 +173,13 @@ You can check the version of _Black_ you have installed using the `--version` fl ```console $ black --version -black, version 21.8b0 +black, version 21.9b0 ``` An option to require a specific version to be running is also provided. ```console -$ black --required-version 21.8b0 -c "format = 'this'" +$ black --required-version 21.9b0 -c "format = 'this'" format = "this" $ black --required-version 31.5b2 -c "still = 'beta?!'" Oh no! 💥 💔 💥 The required version does not match the running version!