From: Ɓukasz Langa Date: Fri, 16 Mar 2018 07:01:22 +0000 (-0700) Subject: Bump version, update README with current fixes X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/1ec7544ab74caa080d6597c13bcc5927b75aca41?pf=etc Bump version, update README with current fixes --- diff --git a/README.md b/README.md index 5a6825f..b1c74b5 100644 --- a/README.md +++ b/README.md @@ -256,6 +256,13 @@ You can still try but prepare to be disappointed. ## Change Log +### 18.3a2 (unreleased) + +* fixed missing space in numpy-style array indexing (#33) + +* fixed spurious space after star-based unary expressions (#31) + + ### 18.3a1 * added `--check` diff --git a/black.py b/black.py index 39f25d3..6b347ba 100644 --- a/black.py +++ b/black.py @@ -21,7 +21,7 @@ from blib2to3 import pygram, pytree from blib2to3.pgen2 import driver, token from blib2to3.pgen2.parse import ParseError -__version__ = "18.3a1" +__version__ = "18.3a2" DEFAULT_LINE_LENGTH = 88 # types syms = pygram.python_symbols