Bump version, update README with current fixes
This commit is contained in:
parent
22ce1e1fc3
commit
1ec7544ab7
@ -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`
|
||||||
|
2
black.py
2
black.py
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user