Skip to content

Commit eb2eb27

Browse files
committed
Prepare for 0.13.1 release
1 parent c729b18 commit eb2eb27

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,12 @@ they have all been tagged as 'slow' so you can skip them by running::
294294
Revision history
295295
================
296296

297+
0.13.1
298+
------
299+
- `#208 <https://github.com/jamesls/fakeredis/pull/208>`_ eval's KEYS and ARGV are now lua tables
300+
- `#209 <https://github.com/jamesls/fakeredis/pull/209>`_ Redis operation that returns dict now converted to Lua table when called inside eval operation
301+
- `#212 <https://github.com/jamesls/fakeredis/pull/212>`_ Optimize ``_scan()``
302+
297303
0.13.0.1
298304
--------
299305
- Fix a typo in the Trove classifiers

fakeredis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
PY2 = sys.version_info[0] == 2
3030

3131

32-
__version__ = '0.13.0.1'
32+
__version__ = '0.13.1'
3333

3434

3535
if PY2:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='fakeredis',
8-
version='0.13.0.1',
8+
version='0.13.1',
99
description="Fake implementation of redis API for testing purposes.",
1010
long_description=open(os.path.join(os.path.dirname(__file__),
1111
'README.rst')).read(),

0 commit comments

Comments
 (0)