Skip to content

Commit

Permalink
Changelog: 🚀
Browse files Browse the repository at this point in the history
## Added

### Subscribe Stub (stipsan#348 @yitongding)

```js
const RedisMock = require('ioredis-mock');
const redis = new RedisMock();
redis.subscribe('news', 'music').then(result => console.log(result)) // logs '2'
```
  • Loading branch information
stipsan authored Dec 7, 2017
1 parent 610d7a3 commit 4b0047c
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ and this project adheres to

## [Unreleased]

## [3.5.0] - 2017-12-07

### Added

* Subscribe Stub (#348 @yitongding)

## [3.4.2] - 2017-11-28

### Fixed

* Remove .eslintcache file from package (#347)

## [3.4.1] - 2017-11-28

### Fixed

* More detailed RunKit example (#346)

## [3.4.0] - 2017-11-27

### Added
Expand Down Expand Up @@ -457,7 +475,10 @@ changes.
* multi
* exec

[unreleased]: https://github.com/stipsan/ioredis-mock/compare/v3.4.0...HEAD
[unreleased]: https://github.com/stipsan/ioredis-mock/compare/v3.5.0...HEAD
[3.5.0]: https://github.com/stipsan/ioredis-mock/compare/v3.4.2...v3.5.0
[3.4.2]: https://github.com/stipsan/ioredis-mock/compare/v3.4.1...v3.4.2
[3.4.1]: https://github.com/stipsan/ioredis-mock/compare/v3.4.0...v3.4.1
[3.4.0]: https://github.com/stipsan/ioredis-mock/compare/v3.3.1...v3.4.0
[3.3.1]: https://github.com/stipsan/ioredis-mock/compare/v3.3.0...v3.3.1
[3.3.0]: https://github.com/stipsan/ioredis-mock/compare/v3.2.0...v3.3.0
Expand Down
2 changes: 1 addition & 1 deletion compat.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
| [srem](http://redis.io/commands/SREM) | :white_check_mark: | :white_check_mark: |
| [sscan](http://redis.io/commands/SSCAN) | :white_check_mark: | :x: |
| [strlen](http://redis.io/commands/STRLEN) | :white_check_mark: | :white_check_mark: |
| [subscribe](http://redis.io/commands/SUBSCRIBE) | :white_check_mark: | :x: |
| [subscribe](http://redis.io/commands/SUBSCRIBE) | :white_check_mark: | :white_check_mark: |
| [sunion](http://redis.io/commands/SUNION) | :white_check_mark: | :white_check_mark: |
| [sunionstore](http://redis.io/commands/SUNIONSTORE) | :white_check_mark: | :x: |
| [swapdb](http://redis.io/commands/SWAPDB) | :white_check_mark: | :x: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"mocha": "^3.5.3",
"mocha-circleci-reporter": "^0.0.2",
"nyc": "^11.3.0",
"prettier": "^1.8.2",
"prettier": "^1.9.1",
"prettier-package-json": "^1.4.0",
"redis-commands": "^1.3.1",
"release-relief": "^1.0.1",
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3899,9 +3899,9 @@ prettier-package-json@^1.4.0:
sort-object-keys "^1.1.2"
sort-order "^1.0.1"

prettier@^1.8.2:
version "1.8.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.8.2.tgz#bff83e7fd573933c607875e5ba3abbdffb96aeb8"
prettier@^1.9.1:
version "1.9.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.9.1.tgz#41638a0d47c1efbd1b7d5a742aaa5548eab86d70"

pretty-format@^21.2.1:
version "21.2.1"
Expand Down

0 comments on commit 4b0047c

Please sign in to comment.