]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Bump version, update README with current fixes
authorŁukasz Langa <lukasz@langa.pl>
Fri, 16 Mar 2018 07:01:22 +0000 (00:01 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Fri, 16 Mar 2018 07:01:22 +0000 (00:01 -0700)
README.md
black.py

index 5a6825f3cc99167ef2565b928840309e3b69c13f..b1c74b5a8d7d2e373d828e78c80faf1c1b52a0ee 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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
 
 * added `--check`
 ### 18.3a1
 
 * added `--check`
index 39f25d3eb73058a4b28cb14e48ede96266cc89fe..6b347bae3cfce89ac328f21518860233650235e3 100644 (file)
--- 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
 
 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
 DEFAULT_LINE_LENGTH = 88
 # types
 syms = pygram.python_symbols