From 77bc6c91856e1ad288f58304cf2d98c23f77e5d0 Mon Sep 17 00:00:00 2001 From: Bruce Merry Date: Mon, 4 May 2020 10:35:21 +0200 Subject: [PATCH] Prepare 1.4.1 release --- README.rst | 5 +++++ fakeredis/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ca38314..8769837 100644 --- a/README.rst +++ b/README.rst @@ -397,6 +397,11 @@ they have all been tagged as 'slow' so you can skip them by running:: Revision history ================ +1.4.1 +----- +- `#268 `_ Support redis-py 3.5 + (no code changes, just setup.py) + 1.4.0 ----- - Add support for aioredis. diff --git a/fakeredis/__init__.py b/fakeredis/__init__.py index 4dc6c12..f896126 100644 --- a/fakeredis/__init__.py +++ b/fakeredis/__init__.py @@ -1,4 +1,4 @@ from ._server import FakeServer, FakeRedis, FakeStrictRedis, FakeConnection # noqa: F401 -__version__ = '1.4.0' +__version__ = '1.4.1' diff --git a/setup.py b/setup.py index 9d03b38..91bb263 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='fakeredis', - version='1.4.0', + version='1.4.1', description="Fake implementation of redis API for testing purposes.", long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),