From 86388b348a65ad137d21a369206ecd71df835935 Mon Sep 17 00:00:00 2001 From: NoneGG Date: Wed, 23 Aug 2017 23:00:27 +0800 Subject: [PATCH] release 1.1.0 --- aredis/__init__.py | 2 +- docs/source/release_notes.rst | 6 +++++- docs/source/todo.rst | 3 ++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/aredis/__init__.py b/aredis/__init__.py index 477e8c21..3b901503 100644 --- a/aredis/__init__.py +++ b/aredis/__init__.py @@ -15,7 +15,7 @@ ) -__version__ = '1.0.9' +__version__ = '1.1.0' VERSION = tuple(map(int, __version__.split('.'))) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 121de3e8..f5d6cc6f 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -52,4 +52,8 @@ Release Notes 1.1.0 ----- * sync optimization of scripting from redis-py made by `bgreenberg `_ `related pull request `_ - * sync bug fixed of `geopos` from redis-py made by `categulario `_ `related pull request `_ \ No newline at end of file + * sync bug fixed of `geopos` from redis-py made by `categulario `_ `related pull request `_ + * fix bug which makes pipeline callback function not executed + * fix error caused by byte decode issues in sentinel + * add basic transaction support for single node in cluster + * fix bug of get_random_connection reported by myrfy001 \ No newline at end of file diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 03d07293..0fc6eca3 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -4,4 +4,5 @@ Todo list 1. red lock for redis cluster 2. more detailed doc for cluster 3. more tests on cluster part -4. more commands supported \ No newline at end of file +4. more commands supported +5. optimize cluaster transaction of single node \ No newline at end of file