From 029d5617bc1baa8a8b85da2ffb2a0a27c512167b Mon Sep 17 00:00:00 2001 From: Bence Nagy Date: Mon, 18 Jul 2016 17:49:06 +0200 Subject: [PATCH] Release 0.3.0 --- HISTORY.rst | 4 ++-- flask_redis/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index a4649e4..1ed82ee 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ History ======= -0.3.0 (unreleased) ------------------ +0.3.0 (2016-07-18) +------------------ - **Backwards incompatible:** The ``FlaskRedis.init_app`` method no longer takes a ``strict`` parameter. Pass this flag when creating your ``FlaskRedis`` instance, instead. diff --git a/flask_redis/__init__.py b/flask_redis/__init__.py index ed323a1..e2de99d 100644 --- a/flask_redis/__init__.py +++ b/flask_redis/__init__.py @@ -5,7 +5,7 @@ redis = None __all__ = ('FlaskRedis', ) -__version__ = '0.1.0' +__version__ = '0.3.0' class FlaskRedis(object): diff --git a/setup.py b/setup.py index 862f72d..aa7fe2c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='Flask-Redis', - version='0.1.0', + version='0.3.0', url='https://github.com/underyx/flask-redis', author='Rhys Elsmore', author_email='me@rhys.io', @@ -39,7 +39,7 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules', ]