From c4651c79d5a9507a8830cb563f1ef2cef3d035d2 Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Wed, 17 Jun 2020 22:40:01 -0700 Subject: [PATCH] Cut version 0.24.0 --- CHANGELOG.md | 6 ++++++ lib/mock_redis/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a13308d..2c1a5503 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # MockRedis Changelog +### 0.24.0 + +* Fix handling of blocks within `multi` blocks ([#185](https://github.com/sds/mock_redis/pull/185)) +* Fix handling of multiple consecutive `?` characters in key pattern matching ([#186](https://github.com/sds/mock_redis/pull/186)) +* Change `exists` to return an integer and add `exists?` ([#188](https://github.com/sds/mock_redis/pull/188)) + ### 0.23.0 * Raise error when `setex` called with negative timeout ([#174](https://github.com/sds/mock_redis/pull/174)) diff --git a/lib/mock_redis/version.rb b/lib/mock_redis/version.rb index 7322ecf5..dd8dfab5 100644 --- a/lib/mock_redis/version.rb +++ b/lib/mock_redis/version.rb @@ -2,5 +2,5 @@ # Defines the gem version. class MockRedis - VERSION = '0.23.0' + VERSION = '0.24.0' end