Skip to content

Commit

Permalink
Cut version 0.36.0 (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
sds committed Jan 27, 2023
1 parent 4e19b31 commit b8b995c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# MockRedis Changelog

### 0.36.0

* Add support for `smismember`
* Add support for `lmove` and `blmove`
* Fix `zrem` to support passing array of integers

### 0.35.0

* Add support for `getdel`
Expand Down
2 changes: 1 addition & 1 deletion lib/mock_redis/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# Defines the gem version.
class MockRedis
VERSION = '0.35.0'
VERSION = '0.36.0'
end
2 changes: 1 addition & 1 deletion spec/commands/smismember_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'spec_helper'

describe '#sismember(key, *members)' do
describe '#smismember(key, *members)' do
before do
@key = 'mock-redis-test:smismember'
@redises.sadd(@key, 'whiskey')
Expand Down

0 comments on commit b8b995c

Please sign in to comment.