summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2012-04-20 19:44:17 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2012-04-20 19:44:17 +0200
commit0afebf47e24d8a1ee1981faef39c0a15a798f7fd (patch)
tree6b39dc65ed2165b3aa748ce81704b944eedfd832
parent2e10fbd7ece587757d3f92d772e5f3a56278878d (diff)
downloadsqlparse-0afebf47e24d8a1ee1981faef39c0a15a798f7fd.tar.gz
Bump version to 0.1.40.1.4
-rw-r--r--CHANGES4
-rw-r--r--sqlparse/__init__.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 098e846..06a4949 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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))