Bump version, update README with current fixes

This commit is contained in:
Łukasz Langa 2018-03-16 00:01:22 -07:00
parent 22ce1e1fc3
commit 1ec7544ab7
2 changed files with 8 additions and 1 deletions

View File

@ -256,6 +256,13 @@ You can still try but prepare to be disappointed.
## Change Log ## 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 ### 18.3a1
* added `--check` * added `--check`

View File

@ -21,7 +21,7 @@
from blib2to3.pgen2 import driver, token from blib2to3.pgen2 import driver, token
from blib2to3.pgen2.parse import ParseError from blib2to3.pgen2.parse import ParseError
__version__ = "18.3a1" __version__ = "18.3a2"
DEFAULT_LINE_LENGTH = 88 DEFAULT_LINE_LENGTH = 88
# types # types
syms = pygram.python_symbols syms = pygram.python_symbols