diff --git a/README.rst b/README.rst index 374f222..db0299a 100644 --- a/README.rst +++ b/README.rst @@ -426,6 +426,13 @@ they have all been tagged as 'slow' so you can skip them by running:: Revision history ================ +1.4.4 +----- +- `#281 `_ Add support for + SCRIPT EXISTS and SCRIPT FLUSH subcommands +- `#280 `_ Fix documentation + about singleton argument + 1.4.3 ----- - `#277 `_ Implement SET with KEEPTTL diff --git a/fakeredis/__init__.py b/fakeredis/__init__.py index 262db90..aee0d01 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.3' +__version__ = '1.4.4' diff --git a/setup.py b/setup.py index f05bb7a..ac63057 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='fakeredis', - version='1.4.3', + version='1.4.4', description="Fake implementation of redis API for testing purposes.", long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),