]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Prepare CHANGES.md for release 21.8b0 (#2458)
authorRichard Si <63936253+ichard26@users.noreply.github.com>
Sun, 29 Aug 2021 18:56:22 +0000 (14:56 -0400)
committerGitHub <noreply@github.com>
Sun, 29 Aug 2021 18:56:22 +0000 (14:56 -0400)
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.

CHANGES.md
docs/integrations/source_version_control.md
docs/usage_and_configuration/the_basics.md

index 6c542f446e79da20e91999595a3fbb11c96c5b07..6e2721ba19c9fb8727575c8bbf01766778813bd5 100644 (file)
@@ -1,6 +1,6 @@
 # Change Log
 
 # Change Log
 
-## Unreleased
+## 21.8b0
 
 ### _Black_
 
 
 ### _Black_
 
@@ -17,7 +17,8 @@
 
 ### _Blackd_
 
 
 ### _Blackd_
 
-- Replace sys.exit(-1) with raise ImportError (#2440)
+- Replace sys.exit(-1) with raise ImportError as it plays more nicely with tools that
+  scan installed packages (#2440)
 
 ### Integrations
 
 
 ### Integrations
 
index e1482487aa4afa6dd301206634bacb2eb2f610c5..220f429eb20d736847b5e7dcea86d9aff0919e82 100644 (file)
@@ -7,7 +7,7 @@ Use [pre-commit](https://pre-commit.com/). Once you
 ```yaml
 repos:
   - repo: https://github.com/psf/black
 ```yaml
 repos:
   - repo: https://github.com/psf/black
-    rev: 21.7b0
+    rev: 21.8b0
     hooks:
       - id: black
         language_version: python3 # Should be a command that runs python3.6+
     hooks:
       - id: black
         language_version: python3 # Should be a command that runs python3.6+
index 474ad669cd10992131bcc22f58248bd6dd2574e6..4b68ad7b76b162cffd8ef4feb5176e928207c0a1 100644 (file)
@@ -173,13 +173,13 @@ You can check the version of _Black_ you have installed using the `--version` fl
 
 ```console
 $ black --version
 
 ```console
 $ black --version
-black, version 21.5b0
+black, version 21.8b0
 ```
 
 An option to require a specific version to be running is also provided.
 
 ```console
 ```
 
 An option to require a specific version to be running is also provided.
 
 ```console
-$ black --required-version 21.5b2 -c "format = 'this'"
+$ black --required-version 21.8b0 -c "format = 'this'"
 format = "this"
 $ black --required-version 31.5b2 -c "still = 'beta?!'"
 Oh no! 💥 💔 💥 The required version does not match the running version!
 format = "this"
 $ black --required-version 31.5b2 -c "still = 'beta?!'"
 Oh no! 💥 💔 💥 The required version does not match the running version!