diff options
author | Andi Albrecht <albrecht.andi@gmail.com> | 2012-04-20 19:44:17 +0200 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2012-04-20 19:44:17 +0200 |
commit | 0afebf47e24d8a1ee1981faef39c0a15a798f7fd (patch) | |
tree | 6b39dc65ed2165b3aa748ce81704b944eedfd832 | |
parent | 2e10fbd7ece587757d3f92d772e5f3a56278878d (diff) | |
download | sqlparse-0afebf47e24d8a1ee1981faef39c0a15a798f7fd.tar.gz |
Bump version to 0.1.40.1.4
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | sqlparse/__init__.py | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ -Development ------------ +Release 0.1.4 (Apr 20, 2012) +---------------------------- Bug Fixes * Avoid "stair case" effects when identifiers, functions, diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py index 5ccf092..f924c04 100644 --- a/sqlparse/__init__.py +++ b/sqlparse/__init__.py @@ -6,7 +6,7 @@ """Parse SQL statements.""" -__version__ = '0.1.3' +__version__ = '0.1.4' class SQLParseError(Exception): @@ -58,4 +58,4 @@ def split(sql): from sqlparse.engine.filter import StatementFilter def split2(stream): splitter = StatementFilter() - return list(splitter.process(None, stream))
\ No newline at end of file + return list(splitter.process(None, stream)) |