diff --git a/README.rst b/README.rst index 815cf8a..12030a9 100644 --- a/README.rst +++ b/README.rst @@ -94,3 +94,12 @@ or install two plugins with different ``keyword`` settings to the same applicati @app.route('/cache/:item') def cache(item, cache): ... + + +Changelog +========= + +* **0.2** + * Fixed `text_factory` parameter. + * Added `functions`, `aggregates`, `collations` and `extensions` parameters. + * Stopped testing for dead Python versions. diff --git a/bottle_sqlite.py b/bottle_sqlite.py index ccd2c33..7fa0e7b 100755 --- a/bottle_sqlite.py +++ b/bottle_sqlite.py @@ -27,7 +27,7 @@ Usage Example:: ''' __author__ = "Marcel Hellkamp" -__version__ = '0.1.3' +__version__ = '0.2.0' __license__ = 'MIT' ### CUT HERE (see setup.py)