From ed422fcf2ee30dae7f23d9644e2cddd60f4f0e87 Mon Sep 17 00:00:00 2001 From: Bruce Merry Date: Tue, 18 Aug 2020 15:31:03 +0200 Subject: [PATCH] Prepare 1.4.3 release --- README.rst | 6 ++++++ fakeredis/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ce23e48..ae3eb2a 100644 --- a/README.rst +++ b/README.rst @@ -428,6 +428,12 @@ they have all been tagged as 'slow' so you can skip them by running:: Revision history ================ +1.4.3 +----- +- `#277 `_ Implement SET with KEEPTTL +- `#278 `_ Handle indefinite + timeout for PUBSUB commands + 1.4.2 ----- - `#269 `_ Prevent passing diff --git a/fakeredis/__init__.py b/fakeredis/__init__.py index 283d72e..262db90 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.2' +__version__ = '1.4.3' diff --git a/setup.py b/setup.py index 2ac94ff..f05bb7a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='fakeredis', - version='1.4.2', + version='1.4.3', description="Fake implementation of redis API for testing purposes.", long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),