diff --git a/CHANGES b/CHANGES index fcb0b0c..001d482 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +* 0.1.14 + * fix parsing crash for rdb with module data containing floats + * fix memprofiler crash on python 2.x crash on long integers + * fix memprofiler crash on rdb with modules or streams + * improvements in memprofiler report to show totals and metadata + * 0.1.13 * Add support for rdb v9 (redis 5.0) and memory analysis of streams * Adding expiry to memory csv diff --git a/rdbtools/__init__.py b/rdbtools/__init__.py index 2239d7f..f6f46da 100644 --- a/rdbtools/__init__.py +++ b/rdbtools/__init__.py @@ -2,7 +2,7 @@ from rdbtools.callbacks import JSONCallback, DiffCallback, ProtocolCallback, KeyValsOnlyCallback, KeysOnlyCallback from rdbtools.memprofiler import MemoryCallback, PrintAllKeys, StatsAggregator, PrintJustKeys -__version__ = '0.1.13' +__version__ = '0.1.14' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [