diff --git a/CHANGES b/CHANGES index 75e2219..6206b91 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +* 0.1.12 + * add parser support for redis 4.0 module types + * fix bug in memory report for long encoding in python2.6 + * 0.1.11 * fix recent bug failing to parse rdb files with sorted sets diff --git a/rdbtools/__init__.py b/rdbtools/__init__.py index 59f57ee..a88d921 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.11' +__version__ = '0.1.12' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [