From c8b432ad674362ee1a0285b247c2cc8045a256b6 Mon Sep 17 00:00:00 2001 From: Oran Agra Date: Wed, 31 Oct 2018 08:05:10 +0200 Subject: [PATCH] bump version 0.1.13 --- CHANGES | 6 ++++++ rdbtools/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 6206b91..fcb0b0c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +* 0.1.13 + * Add support for rdb v9 (redis 5.0) and memory analysis of streams + * Adding expiry to memory csv + * Warning users when python-lzf is not installed + * Minor fix to memory calculations of small numeric values + * 0.1.12 * add parser support for redis 4.0 module types * fix bug in memory report for long encoding in python2.6 diff --git a/rdbtools/__init__.py b/rdbtools/__init__.py index a88d921..2239d7f 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.12' +__version__ = '0.1.13' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [