summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2010-11-23 06:23:28 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2010-11-23 06:23:28 +0100
commit26c2abe55a5316a681b8d9023f85a5a13a7b3195 (patch)
treec2264a948c0f038b4ade08141e6c3d976e0da135
parent502c899772a5c1cfa8e47ba545318c55d2ebf978 (diff)
downloadsqlparse-0.1.2.tar.gz
Bump version to 0.1.2.0.1.2
-rw-r--r--CHANGES5
-rw-r--r--sqlparse/__init__.py2
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 19f4c6c..b79130a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-In Development
---------------
+Release 0.1.2 (Nov 23, 2010)
+---------------------------------
Bug Fixes
* Fixed incorrect detection of keyword fragments embed in names (issue7,
@@ -14,6 +14,7 @@ Bug Fixes
parsing and more (issues 12, 14, 15, 16, 18, 19).
* Code cleanup with a pinch of refactoring.
+
Release 0.1.1 (May 6, 2009)
---------------------------
diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py
index 2e9493f..903fdd1 100644
--- a/sqlparse/__init__.py
+++ b/sqlparse/__init__.py
@@ -6,7 +6,7 @@
"""Parse SQL statements."""
-__version__ = '0.1.1'
+__version__ = '0.1.2'
class SQLParseError(Exception):