From 0cc0379abc2c1297da0f0bf4592ee38d823858f4 Mon Sep 17 00:00:00 2001 From: NoneGG Date: Sun, 1 Oct 2017 18:02:23 +0800 Subject: [PATCH] release v1.1.1 --- aredis/__init__.py | 2 +- docs/source/release_notes.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/aredis/__init__.py b/aredis/__init__.py index 3b901503..3b316dd7 100644 --- a/aredis/__init__.py +++ b/aredis/__init__.py @@ -15,7 +15,7 @@ ) -__version__ = '1.1.0' +__version__ = '1.1.1' VERSION = tuple(map(int, __version__.split('.'))) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index e3733d2a..71dc95a7 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -65,4 +65,5 @@ Release Notes * add c extension to speedup crc16, which will speedup cluster slot hashing * add error handling for asyncio.futures.Cancelled error, which may cause error in response parsing. * sync optimization of client list made by swilly22 from redis-py + * add support for distributed lock using redis cluster