summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
author赖信涛 <laixintao@users.noreply.github.com>2020-03-04 04:46:26 +0800
committerGitHub <noreply@github.com>2020-03-03 12:46:26 -0800
commit81d76657385fc81548e5eaca4781c0e6b214ea16 (patch)
tree5f9736e23e3bd0acf36482886f1e65387debf2d2 /CHANGES
parent81f9cbe1f0ea1d3d064fe77d9037a430120dc3cf (diff)
downloadredis-py-81d76657385fc81548e5eaca4781c0e6b214ea16.tar.gz
doc: fix changes of `hset`.(incorrect version) (#1297)
fix: https://github.com/andymccurdy/redis-py/issues/1296
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 97a53ed..6d3cec6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -14,6 +14,8 @@
expect strings or bytes. The memoryview instance is sent directly to
the socket such that there are zero copies made of the underlying data
during command packing. Thanks @Cody-G. #1265, #1285
+ * HSET command now can accept multiple pairs. HMSET has been marked as
+ deprecated now. Thanks to @laixintao #1271
* 3.4.1
* Move the username argument in the Redis and Connection classes to the
end of the argument list. This helps those poor souls that specify all
@@ -30,8 +32,6 @@
in 3.4.0. This ended up being a bad idea as two separate connection
pools be considered equal yet manage a completely separate set of
connections.
- * HSET command now can accept multiple pairs. HMSET has been marked as
- deprecated now. Thanks to @laixintao #1271
* 3.4.0
* Allow empty pipelines to be executed if there are WATCHed keys.
This is a convenient way to test if any of the watched keys changed