From 46cbdfd5324be57f15481bee32ad0fda507171b0 Mon Sep 17 00:00:00 2001 From: Alexander Early Date: Sun, 7 Jun 2015 18:27:46 -0700 Subject: update package.jsons and changelog --- CHANGELOG.md | 5 +++++ bower.json | 9 ++++++--- component.json | 2 +- package.json | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ece1f61..f42b7ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v1.1.1 + +Bug Fix +- Small regression with synchronous iterator behavior in `eachSeries` with a 1-element array. Before 1.1.0, `eachSeries`'s callback was called on the same tick, which this patch restores. In 2.0.0, it will be called on the next tick. (#782) + # v1.1.0 New Features: diff --git a/bower.json b/bower.json index 9e4156d..494372a 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "async", "description": "Higher-order functions and common patterns for asynchronous code", - "version": "1.0.0", + "version": "1.1.1", "main": "lib/async.js", "keywords": [ "async", @@ -15,12 +15,15 @@ "url": "https://github.com/caolan/async.git" }, "devDependencies": { - "benchmark": "~1.0.0", + "benchmark": "bestiejs/benchmark.js", + "coveralls": "^2.11.2", "jshint": "~2.7.0", "lodash": ">=2.4.1", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x" + "nyc": "^2.1.0", + "uglify-js": "1.2.x", + "yargs": "~3.9.1" }, "moduleType": [ "amd", diff --git a/component.json b/component.json index c876b0a..4b09536 100644 --- a/component.json +++ b/component.json @@ -1,7 +1,7 @@ { "name": "async", "description": "Higher-order functions and common patterns for asynchronous code", - "version": "1.0.0", + "version": "1.1.1", "keywords": [ "async", "callback", diff --git a/package.json b/package.json index cbeae06..6718c64 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Higher-order functions and common patterns for asynchronous code", "main": "lib/async.js", "author": "Caolan McMahon", - "version": "1.1.0", + "version": "1.1.1", "keywords": [ "async", "callback", @@ -59,4 +59,4 @@ "tests" ] } -} +} \ No newline at end of file -- cgit v1.2.1