Skip to content

Commit 86c522c

Browse files
committed
Prepare v0.5.1
1 parent b360a5a commit 86c522c

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
(Nothing yet.)
1111

12+
## [0.5.1]
13+
14+
### Fixed
15+
16+
- Don't throw a `TypeError` if the `matches()` method of an action creator is
17+
called independently from the action creator object. Allows idioms such as
18+
`filter(actionCreator.matches)` without having to resort to
19+
`Function.prototype.bind` (`actionCreator.matches.bind(actionCreator)`).
20+
1221
## [0.5.0]
1322

1423
### Added
@@ -83,6 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8392
- Add a license link to `README.md`.
8493

8594
[Unreleased]: https://github.com/denisw/redux-preboiled/compare/v0.4.1...HEAD
95+
[0.5.1]: https://github.com/denisw/redux-preboiled/compare/v0.5.0...v0.5.1
96+
[0.5.0]: https://github.com/denisw/redux-preboiled/compare/v0.4.1...v0.5.0
8697
[0.4.1]: https://github.com/denisw/redux-preboiled/compare/v0.4.0...v0.4.1
8798
[0.4.0]: https://github.com/denisw/redux-preboiled/compare/v0.3.1...v0.4.0
8899
[0.3.1]: https://github.com/denisw/redux-preboiled/compare/v0.3.0...v0.3.1

package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "redux-preboiled",
33
"description": "Composable, typing-friendly Redux helpers",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"license": "MIT",
66
"homepage": "https://redux-preboiled.js.org",
77
"repository": {

0 commit comments

Comments
 (0)