Skip to content

Commit

Permalink
8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshuawuyts committed Aug 29, 2016
1 parent 50eadad commit 0064e6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function defaultOnError (err) {
}

function wrapOnError (onError) {
return function onErrorWrap (err) {
if (err) onError(err)
return function onErrorWrap (err, state, createSend) {
if (err) onError(err, state, createSend)
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barracks",
"version": "8.1.1",
"version": "8.2.0",
"description": "Action dispatcher for unidirectional data flows",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 0064e6a

Please sign in to comment.