From 1ec7544ab74caa080d6597c13bcc5927b75aca41 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Fri, 16 Mar 2018 00:01:22 -0700 Subject: [PATCH] Bump version, update README with current fixes --- README.md | 7 +++++++ black.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 -- 2.39.2