From 33c83ebd430a1e8eb38a45ae2cd3a620ec1f0d3c Mon Sep 17 00:00:00 2001 From: oranagra Date: Mon, 11 Dec 2017 09:03:24 +0200 Subject: [PATCH] bump version 0.1.12 --- CHANGES | 4 ++++ rdbtools/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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__ = [