From: Ɓukasz Langa Date: Tue, 24 Apr 2018 20:52:12 +0000 (-0700) Subject: 18.4a3 X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/1445bea97edee472e053f00010cb378f4b51e1c4?ds=inline;pf=etc 18.4a3 --- diff --git a/README.md b/README.md index 489bda5..09779d8 100644 --- a/README.md +++ b/README.md @@ -522,7 +522,7 @@ More details can be found in [CONTRIBUTING](CONTRIBUTING.md). ## Change Log -### 18.4a3 (unreleased) +### 18.4a3 * added a "cache"; files already reformatted that haven't changed on disk won't be reformatted again (#109) @@ -551,6 +551,7 @@ More details can be found in [CONTRIBUTING](CONTRIBUTING.md). * fixed missing splits of ternary expressions (#141) + ### 18.4a2 * fixed parsing of unaligned standalone comments (#99, #112) diff --git a/black.py b/black.py index 21e3743..e899f7f 100644 --- a/black.py +++ b/black.py @@ -43,8 +43,9 @@ from blib2to3 import pygram, pytree from blib2to3.pgen2 import driver, token from blib2to3.pgen2.parse import ParseError -__version__ = "18.4a2" +__version__ = "18.4a3" DEFAULT_LINE_LENGTH = 88 + # types syms = pygram.python_symbols FileContent = str