From b66e85d1cca8c8056313253f22d18f571e7001d2 Mon Sep 17 00:00:00 2001 From: Alexander Early Date: Sun, 7 Jun 2015 18:31:18 -0700 Subject: [PATCH] update changelog and package jsons --- CHANGELOG.md | 9 ++++++++- bower.json | 4 ++-- component.json | 4 ++-- package.json | 4 ++-- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5e7cccc7..80e67358f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.2.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.2.0 New Features: @@ -12,7 +18,8 @@ Bug Fixes: # v1.1.1 -Bug Fix +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) diff --git a/bower.json b/bower.json index 580ad8466..60b78284a 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.2.0", + "version": "1.2.1", "main": "lib/async.js", "keywords": [ "async", @@ -40,4 +40,4 @@ "authors": [ "Caolan McMahon" ] -} +} \ No newline at end of file diff --git a/component.json b/component.json index 3758f7f95..0684c869b 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.2.0", + "version": "1.2.1", "keywords": [ "async", "callback", @@ -14,4 +14,4 @@ "scripts": [ "lib/async.js" ] -} +} \ No newline at end of file diff --git a/package.json b/package.json index b1cecc783..b3210f35b 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.2.0", + "version": "1.2.1", "keywords": [ "async", "callback", @@ -59,4 +59,4 @@ "tests" ] } -} +} \ No newline at end of file