From ce14b595c865fcc1e4646f7194995855bf356f8b Mon Sep 17 00:00:00 2001 From: Marcel Hellkamp Date: Sat, 3 Oct 2020 17:13:16 +0200 Subject: [PATCH] Release 0.2 --- README.rst | 9 +++++++++ bottle_sqlite.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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)