diff --git a/CHANGELOG.md b/CHANGELOG.md index 87af5c79..bbdc021b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Unreleased +# 5.2.0 + +- Now require Ruby 2.6 because `redis-client` does. +- Eagerly close subscribed connection when using `subscribe_with_timeout`. See #1259. - Add `exception` flag in `pipelined` allowing failed commands to be returned in the result array when set to `false`. # 5.1.0 diff --git a/lib/redis/version.rb b/lib/redis/version.rb index 827838be..4d34fe45 100644 --- a/lib/redis/version.rb +++ b/lib/redis/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class Redis - VERSION = '5.1.0' + VERSION = '5.2.0' end