Skip to content

Commit a6ec56a

Browse files
committed
bump version 0.1.14
1 parent f97b72f commit a6ec56a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGES

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
* 0.1.14
2+
* fix parsing crash for rdb with module data containing floats
3+
* fix memprofiler crash on python 2.x crash on long integers
4+
* fix memprofiler crash on rdb with modules or streams
5+
* improvements in memprofiler report to show totals and metadata
6+
17
* 0.1.13
28
* Add support for rdb v9 (redis 5.0) and memory analysis of streams
39
* Adding expiry to memory csv

rdbtools/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from rdbtools.callbacks import JSONCallback, DiffCallback, ProtocolCallback, KeyValsOnlyCallback, KeysOnlyCallback
33
from rdbtools.memprofiler import MemoryCallback, PrintAllKeys, StatsAggregator, PrintJustKeys
44

5-
__version__ = '0.1.13'
5+
__version__ = '0.1.14'
66
VERSION = tuple(map(int, __version__.split('.')))
77

88
__all__ = [

0 commit comments

Comments
 (0)