We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e10fbd commit 0afebf4Copy full SHA for 0afebf4
CHANGES
@@ -1,5 +1,5 @@
1
-Development
2
------------
+Release 0.1.4 (Apr 20, 2012)
+----------------------------
3
4
Bug Fixes
5
* Avoid "stair case" effects when identifiers, functions,
sqlparse/__init__.py
@@ -6,7 +6,7 @@
6
"""Parse SQL statements."""
7
8
9
-__version__ = '0.1.3'
+__version__ = '0.1.4'
10
11
12
class SQLParseError(Exception):
@@ -58,4 +58,4 @@ def split(sql):
58
from sqlparse.engine.filter import StatementFilter
59
def split2(stream):
60
splitter = StatementFilter()
61
- return list(splitter.process(None, stream))
+ return list(splitter.process(None, stream))
0 commit comments