Skip to content

Commit

Permalink
Prepare for 1.5.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Mar 24, 2021
1 parent 919d951 commit d1dbaf2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,15 @@ they have all been tagged as 'slow' so you can skip them by running::
Revision history
================

1.5.0
-----
- Fix clearing of watches when a transaction is aborted.
- Support Python 3.9 and drop support for Python 3.5.
- Update handling of EXEC failures to match redis 6.0.6+.
- `#293 <https://github.com/jamesls/fakeredis/pull/293>`_ Align
`FakeConnection` constructor signature to base class
- Skip hypothesis tests on 32-bit Redis servers.

1.4.5
-----
- `#285 <https://github.com/jamesls/fakeredis/pull/285>`_ Add support for DUMP
Expand Down
2 changes: 1 addition & 1 deletion fakeredis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ._server import FakeServer, FakeRedis, FakeStrictRedis, FakeConnection # noqa: F401


__version__ = '1.4.5'
__version__ = '1.5.0'
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='1.4.5',
version='1.5.0',
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 d1dbaf2

Please sign in to comment.