Skip to content

Commit

Permalink
v2.4.3. Bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Dec 12, 2014
1 parent ea629ce commit 9e7b706
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
@@ -1,5 +1,8 @@
# History

## v2.4.3 December 12, 2014
- Fixed flow (regression since v2.4.2)

## v2.4.2 December 12, 2014
- Updated dependencies

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"title": "[Benjamin Lupton's](http://balupton.com) Utility Functions",
"name": "bal-util",
"version": "2.4.2",
"version": "2.4.3",
"description": "Common utility functions for Node.js used and maintained by Benjamin Lupton",
"homepage": "https://github.com/balupton/bal-util",
"license": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/flow.coffee
Expand Up @@ -31,7 +31,7 @@ balUtilFlow =
# Create tasks group and cycle through it
actions ?= action.split(/[,\s]+/g)
object ?= null
tasks or= new TaskGroup().once('complete',next)
tasks or= new TaskGroup().done(next)
actions.forEach (action) -> tasks.addTask (complete) ->
# Prepare callback
argsClone = (args or []).slice()
Expand Down

0 comments on commit 9e7b706

Please sign in to comment.