Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Nov 16, 2018
1 parent a7b6a1b commit c6a37d3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

This document describes changes to the APIs.

### 0.7.0 (unreleased)
### master

No changes yet.

### 0.7.0

Depends on [redis-py](https://github.com/andymccurdy/redis-py) 3.0 or newer.
There are a number of backwards-incompatible changes in redis-py. Because
walrus provides high-level abstractions for the Redis data-types/commands, your
walrus code should work with little or no modifications. Refer to the [list of changes](https://github.com/andymccurdy/redis-py#upgrading-from-redis-py-2x-to-30)
for more information.

[redis-py](https://github.com/andymccurdy/redis-py) added support for stream
commands as well as zpop/bzpop. As a result, walrus no longer contains separate
Expand All @@ -18,6 +28,13 @@ a list of `[stream_name, [(message_id, data), ...]]`. To retain the
functionality of walrus prior-to 0.7.0, just wrap the return value in a call to
the `dict` constructor: `ret = dict(consumer_group.read(count=1))`.

* Added [BloomFilter](https://walrus.readthedocs.io/en/latest/api.html#walrus.Database.bloom_filter)
container type, which supports `add()` and `contains()`.
* Added a high-level [BitField](https://walrus.readthedocs.io/en/latest/api.html#walrus.BitField)
container type.

[View all changes](https://github.com/coleifer/walrus/compare/0.6.4...0.7.0)

### 0.6.0

* Stream support added, including consumer groups.
Expand Down
2 changes: 1 addition & 1 deletion walrus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = 'Charles Leifer'
__license__ = 'MIT'
__version__ = '0.6.4'
__version__ = '0.7.0'

# ___
# .-9 9 `\
Expand Down

0 comments on commit c6a37d3

Please sign in to comment.