diff options
author | Andi Albrecht <albrecht.andi@gmail.com> | 2016-07-20 09:20:19 +0200 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2016-07-20 09:20:19 +0200 |
commit | 9919d14755143780a8889bbafafd554ed8c28930 (patch) | |
tree | 5c2981dea73933a57fd333e4f43e42fb921e6f8e | |
parent | b00489a43eaa8bf6bef5474f3d96ec0feff59283 (diff) | |
download | sqlparse-0.2.0.tar.gz |
Bump version to 0.2.0.0.2.0
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | sqlparse/__init__.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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'] |