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(),