Skip to content

Commit

Permalink
update package.jsons and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Early committed Jun 8, 2015
1 parent 0ad1237 commit 46cbdfd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
9 changes: 6 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -59,4 +59,4 @@
"tests"
]
}
}
}

0 comments on commit 46cbdfd

Please sign in to comment.