]> 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 release 22.12.0 (#3413)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Fri, 9 Dec 2022 15:49:43 +0000 (07:49 -0800)
committerGitHub <noreply@github.com>
Fri, 9 Dec 2022 15:49:43 +0000 (07:49 -0800)
CHANGES.md
docs/integrations/source_version_control.md
docs/usage_and_configuration/the_basics.md

index 992b38004052ccd07dbc3934a05d1b730817c8c9..20ae65d36f3064af8d6e559ba5540b5ac5138f90 100644 (file)
 
 <!-- Changes that affect Black's preview style -->
 
-- Enforce empty lines before classes and functions with sticky leading comments (#3302)
-- Reformat empty and whitespace-only files as either an empty file (if no newline is
-  present) or as a single newline character (if a newline is present) (#3348)
-- Implicitly concatenated strings used as function args are now wrapped inside
-  parentheses (#3307)
-- Correctly handle trailing commas that are inside a line's leading non-nested parens
-  (#3370)
-
 ### Configuration
 
 <!-- Changes to how Black can be configured -->
 
-- Fix incorrectly applied .gitignore rules by considering the .gitignore location and
-  the relative path to the target file (#3338)
-- Fix incorrectly ignoring .gitignore presence when more than one source directory is
-  specified (#3336)
-
 ### Packaging
 
 <!-- Changes to how Black is packaged, such as dependency requirements -->
 
 <!-- Changes to the parser or to version autodetection -->
 
-- Parsing support has been added for walruses inside generator expression that are
-  passed as function args (for example,
-  `any(match := my_re.match(text) for text in texts)`) (#3327).
-
 ### Performance
 
 <!-- Changes that improve Black's performance. -->
 
 <!-- For example, Docker, GitHub Actions, pre-commit, editors -->
 
-- Vim plugin: Optionally allow using the system installation of Black via
-  `let g:black_use_virtualenv = 0`(#3309)
-
 ### Documentation
 
 <!-- Major changes to documentation and policies. Small docs changes
      don't need a changelog entry. -->
 
+## 22.12.0
+
+### Preview style
+
+<!-- Changes that affect Black's preview style -->
+
+- Enforce empty lines before classes and functions with sticky leading comments (#3302)
+- Reformat empty and whitespace-only files as either an empty file (if no newline is
+  present) or as a single newline character (if a newline is present) (#3348)
+- Implicitly concatenated strings used as function args are now wrapped inside
+  parentheses (#3307)
+- Correctly handle trailing commas that are inside a line's leading non-nested parens
+  (#3370)
+
+### Configuration
+
+<!-- Changes to how Black can be configured -->
+
+- Fix incorrectly applied `.gitignore` rules by considering the `.gitignore` location
+  and the relative path to the target file (#3338)
+- Fix incorrectly ignoring `.gitignore` presence when more than one source directory is
+  specified (#3336)
+
+### Parser
+
+<!-- Changes to the parser or to version autodetection -->
+
+- Parsing support has been added for walruses inside generator expression that are
+  passed as function args (for example,
+  `any(match := my_re.match(text) for text in texts)`) (#3327).
+
+### Integrations
+
+<!-- For example, Docker, GitHub Actions, pre-commit, editors -->
+
+- Vim plugin: Optionally allow using the system installation of Black via
+  `let g:black_use_virtualenv = 0`(#3309)
+
 ## 22.10.0
 
 ### Highlights
index 4189b5c4b06c13b2ac6e30a19d5aa1e362e92984..712b9a688d1604e9dd19771c5eff9f0fd65a96fb 100644 (file)
@@ -7,7 +7,7 @@ Use [pre-commit](https://pre-commit.com/). Once you
 ```yaml
 repos:
   - repo: https://github.com/psf/black
-    rev: 22.10.0
+    rev: 22.12.0
     hooks:
       - id: black
         # It is recommended to specify the latest version of Python
index 80897532a68f98f24d30d5c309929ab6b2878b3a..3dab644f2c8bcf1b16cfde0ee5bf75af56eb72ee 100644 (file)
@@ -175,7 +175,7 @@ You can check the version of _Black_ you have installed using the `--version` fl
 
 ```console
 $ black --version
-black, version 22.10.0
+black, version 22.12.0
 ```
 
 An option to require a specific version to be running is also provided.