Skip to content

Commit

Permalink
Fix a typo in the Trove classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Aug 20, 2018
1 parent cd5c515 commit c3c45af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,10 @@ they have all been tagged as 'slow' so you can skip them by running::
Revision history
================

0.13.0.1
--------
- Fix a typo in the Trove classifiers

0.13.0
------
- `#202 <https://github.com/jamesls/fakeredis/pull/202>`_ Function smembers returns deepcopy
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'
__version__ = '0.13.0.1'


if PY2:
Expand Down
4 changes: 2 additions & 2 deletions 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',
version='0.13.0.1',
description="Fake implementation of redis API for testing purposes.",
long_description=open(os.path.join(os.path.dirname(__file__),
'README.rst')).read(),
Expand All @@ -27,7 +27,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: PYthon :: 3.7'
'Programming Language :: Python :: 3.7'
],
install_requires=[
'redis',
Expand Down

0 comments on commit c3c45af

Please sign in to comment.