diff options
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b902187 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +# Version 3.3.0 + +- Add `Parallel::collect()` and `Parallel::finish_in()` to allow for generic containers. (#9) + +# Version 3.2.0 + +- Remove `T: Default` bound from `Default` impl. + +# Version 3.1.0 + +- Add `Parallel::finish()`. + +# Version 3.0.0 + +- Collect results in the same order closures were added. + +# Version 2.2.0 + +- Remove `PhantomData` making `'a` invariant. + +# Version 2.1.0 + +- Run one of the closures on the main thread. + +# Version 2.0.0 + +- `Parallel::run()` now collects results. + +# Version 1.0.1 + +- Remove unused `mut`. + +# Version 1.0.0 + +- Initial version |