Skip to content

Commit

Permalink
bump version to 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oranagra committed Feb 26, 2017
1 parent 41d9cda commit 1433f8f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
24 changes: 14 additions & 10 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
* 0.1.1
* Fixed lzf decompression
* Standard python project layout
* Python script to automatically create test RDB files
* Adds test cases
* Adds setup.py to easily install this library
* Adds MIT license
* 0.1.9
* python 3 support
* rdb v8 (redis 4.0) support
* binary to string conversion fixes
* use ujson/cStringIO/python-lzf if they're available
* filter keys by size
* bugfixes parsing sorted sets
* fix setup.py dependancies and remove requirements.txt file

* 0.1.8
* fix a crash in the memory profiler recently introduced.

* 0.1.7
* rdb v7 (redis 3.2) support

* 0.1.0
* Initial version
* Specification for RDB file format
2 changes: 1 addition & 1 deletion rdbtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from rdbtools.callbacks import JSONCallback, DiffCallback, ProtocolCallback, KeyValsOnlyCallback, KeysOnlyCallback
from rdbtools.memprofiler import MemoryCallback, PrintAllKeys, StatsAggregator, PrintJustKeys

__version__ = '0.1.7'
__version__ = '0.1.9'
VERSION = tuple(map(int, __version__.split('.')))

__all__ = [
Expand Down

0 comments on commit 1433f8f

Please sign in to comment.