Skip to content

Commit

Permalink
Update CHANGLOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed Feb 14, 2020
1 parent 3af8fa2 commit 8d4b54d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `async` will be documented in this file

## 1.2.0 - 2020-02-14

- Add ability to stop the pool early (#56)

## 1.1.1 - 2019-12-24

- allow Symfony 5 components
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ $pool = Pool::create();
for($i = 0; $i < 10000; $i++) {
$pool->add(function() use ($i) {
return rand(0, 100);

})->then(function($output) use ($pool) {
// If one of them randomly picks 100, end the pool early.
if ($output === 100) {
Expand Down

0 comments on commit 8d4b54d

Please sign in to comment.