summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorJonathan Stern <jonathan.a.stern@gmail.com>2018-06-02 14:25:41 -0500
committerGitHub <noreply@github.com>2018-06-02 14:25:41 -0500
commitd750ed1fdb47d755b609d4b6206777ef07610804 (patch)
tree8a1ccd0f0c016ec2c0e9a66f42d06f940e222e68 /CHANGES
parent413e802f8fe390738bc1e89716083586e0269fd0 (diff)
downloadredis-py-d750ed1fdb47d755b609d4b6206777ef07610804.tar.gz
fix description for srandmember bugfix
Reading through the changelog I noticed that one of the items seemed to trail off mid-sentence. I assume this was meant to refer to https://github.com/andymccurdy/redis-py/issues/881 and https://github.com/andymccurdy/redis-py/pull/882
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index d048ea5..64dcf19 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,7 @@
* 2.10.6
* Various performance improvements. Thanks cjsimpson
- * Fixed a bug with SRANDMEMBER where
+ * Fixed a bug with SRANDMEMBER where the behavior for `number=0` did
+ not match the spec. Thanks Alex Wang
* Added HSTRLEN command. Thanks Alexander Putilin
* Added the TOUCH command. Thanks Anis Jonischkeit
* Remove unnecessary calls to the server when registering Lua scripts.