Skip to content

Commit

Permalink
Prepare for 0.13.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Sep 10, 2018
1 parent c729b18 commit eb2eb27
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,12 @@ they have all been tagged as 'slow' so you can skip them by running::
Revision history
================

0.13.1
------
- `#208 <https://github.com/jamesls/fakeredis/pull/208>`_ eval's KEYS and ARGV are now lua tables
- `#209 <https://github.com/jamesls/fakeredis/pull/209>`_ Redis operation that returns dict now converted to Lua table when called inside eval operation
- `#212 <https://github.com/jamesls/fakeredis/pull/212>`_ Optimize ``_scan()``

0.13.0.1
--------
- Fix a typo in the Trove classifiers
Expand Down
2 changes: 1 addition & 1 deletion fakeredis.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
PY2 = sys.version_info[0] == 2


__version__ = '0.13.0.1'
__version__ = '0.13.1'


if PY2:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit eb2eb27

Please sign in to comment.