summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <aearly@fluid.com>2015-06-07 18:27:46 -0700
committerAlexander Early <aearly@fluid.com>2015-06-07 18:27:46 -0700
commit46cbdfd5324be57f15481bee32ad0fda507171b0 (patch)
tree59b181740d03c35cf917175513e5a26708b6d7a6
parent0ad12379c9d04b824c33c092e955bce1890d075b (diff)
downloadasync-1.1.x.tar.gz
update package.jsons and changelog1.1.11.1.x
-rw-r--r--CHANGELOG.md5
-rw-r--r--bower.json9
-rw-r--r--component.json2
-rw-r--r--package.json4
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