diff --git a/README.rst b/README.rst index c6dc3fc..23b0799 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ Function smembers returns deepcopy diff --git a/fakeredis.py b/fakeredis.py index 47cc50b..31ddb57 100644 --- a/fakeredis.py +++ b/fakeredis.py @@ -29,7 +29,7 @@ PY2 = sys.version_info[0] == 2 -__version__ = '0.13.0' +__version__ = '0.13.0.1' if PY2: diff --git a/setup.py b/setup.py index ff22b33..1335777 100644 --- a/setup.py +++ b/setup.py @@ -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(), @@ -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',