From eb2eb27ce27e935f43cc5ec8435573dcc7af13c1 Mon Sep 17 00:00:00 2001 From: Bruce Merry Date: Mon, 10 Sep 2018 11:21:18 +0200 Subject: [PATCH] Prepare for 0.13.1 release --- README.rst | 6 ++++++ fakeredis.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 23b0799..38deca1 100644 --- a/README.rst +++ b/README.rst @@ -294,6 +294,12 @@ they have all been tagged as 'slow' so you can skip them by running:: Revision history ================ +0.13.1 +------ +- `#208 `_ eval's KEYS and ARGV are now lua tables +- `#209 `_ Redis operation that returns dict now converted to Lua table when called inside eval operation +- `#212 `_ Optimize ``_scan()`` + 0.13.0.1 -------- - Fix a typo in the Trove classifiers diff --git a/fakeredis.py b/fakeredis.py index 5ce669e..6b05902 100644 --- a/fakeredis.py +++ b/fakeredis.py @@ -29,7 +29,7 @@ PY2 = sys.version_info[0] == 2 -__version__ = '0.13.0.1' +__version__ = '0.13.1' if PY2: diff --git a/setup.py b/setup.py index 1335777..e0051ff 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='fakeredis', - version='0.13.0.1', + version='0.13.1', description="Fake implementation of redis API for testing purposes.", long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),