summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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']