diff --git a/docs/release-notes.rst b/docs/release-notes.rst index f52b66b8..8cd18b29 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -1,8 +1,8 @@ Release Notes ============= -Next release (??? ??, 2016) ---------------------------- +1.3.3 (Dec 15, 2016) +-------------------- * Remove print statement that was faulty commited into release 1.3.2 that case logs to fill up with unwanted data. diff --git a/rediscluster/__init__.py b/rediscluster/__init__.py index 85757601..59ae5282 100644 --- a/rediscluster/__init__.py +++ b/rediscluster/__init__.py @@ -16,7 +16,7 @@ setattr(redis, "StrictClusterPipeline", StrictClusterPipeline) # Major, Minor, Fix version -__version__ = (1, 3, 2) +__version__ = (1, 3, 3) if sys.version_info[0:3] == (3, 4, 0): raise RuntimeError("CRITICAL: rediscluster do not work with python 3.4.0. Please use 3.4.1 or higher.") diff --git a/setup.py b/setup.py index 4a5e890a..0109830f 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="redis-py-cluster", - version="1.3.2", + version="1.3.3", description="Cluster library for redis 3.0.0 built on top of redis-py lib", long_description=readme + '\n\n' + history, author="Johan Andersson",