diff --git a/CHANGELOG.md b/CHANGELOG.md index 6756d46..237b6f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # MockRedis Changelog +### 0.28.0 + +* Fix `hmset` exception ([#206](https://github.com/sds/mock_redis/pull/206)) +* Fix `hmset` to accept hashes in addition to key/value pairs ([#208](https://github.com/sds/mock_redis/pull/208)) +* Fix stream ID regex to support `(` ([#209](https://github.com/sds/mock_redis/pull/209)) +* Allow `mget` to accept a block ([#210](https://github.com/sds/mock_redis/pull/210)) + ### 0.27.3 * Ensure `ruby2_keywords` dependency is `require`d at runtime diff --git a/lib/mock_redis/version.rb b/lib/mock_redis/version.rb index 862656d..a38deeb 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.27.3' + VERSION = '0.28.0' end