Skip to content

Commit fc07cf4

Browse files
committed
Prepare for 1.2.1 release
1 parent 2716386 commit fc07cf4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,11 @@ they have all been tagged as 'slow' so you can skip them by running::
371371
Revision history
372372
================
373373

374+
1.2.1
375+
-----
376+
- `#262 <https://github.com/jamesls/fakeredis/issues/262>`_ Cannot repr redis object without host attribute
377+
- Fix a bug in the hypothesis test framework that occasionally caused a failure
378+
374379
1.2.0
375380
-----
376381
- Drop support for Python 2.7.

fakeredis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from ._server import FakeServer, FakeRedis, FakeStrictRedis, FakeConnection # noqa: F401
22

33

4-
__version__ = '1.2.0'
4+
__version__ = '1.2.1'

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='1.2.0',
8+
version='1.2.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)