summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2016-07-20 09:20:19 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2016-07-20 09:20:19 +0200
commit9919d14755143780a8889bbafafd554ed8c28930 (patch)
tree5c2981dea73933a57fd333e4f43e42fb921e6f8e
parentb00489a43eaa8bf6bef5474f3d96ec0feff59283 (diff)
downloadsqlparse-0.2.0.tar.gz
Bump version to 0.2.0.0.2.0
-rw-r--r--CHANGELOG4
-rw-r--r--sqlparse/__init__.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3ef1020..23e6a32 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,5 @@
-Development Version
--------------------
+Release 0.2.0 (Jul 20, 2016)
+----------------------------
IMPORTANT: The supported Python versions have changed with this release.
sqlparse 0.2.x supports Python 2.7 and Python >= 3.3.
diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py
index 5c10f14..4c6c29b 100644
--- a/sqlparse/__init__.py
+++ b/sqlparse/__init__.py
@@ -17,7 +17,7 @@ from sqlparse import formatter
from sqlparse.compat import text_type
-__version__ = '0.2.0.dev0'
+__version__ = '0.2.0'
__all__ = ['engine', 'filters', 'formatter', 'sql', 'tokens', 'cli']