• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Change Log
2
3## [Unreleased]
4
5## [v0.2.0] - 2019-03-10
6
7### Changed
8
9* All closures used by adaptor methods now return `Result`s.
10* `FromFallibleIterator::from_fallible_iterator` has been renamed to `from_fallible_iter` and now takes an
11    `IntoFallibleIterator`.
12* `IntoFallibleIterator::into_fallible_iterator` has been renamed to `into_fallible_iter`.
13* `IntoFallibleIterator::IntoIter` has been renamed to `IntoFallibleIter`.
14
15### Removed
16
17* `FallibleIterator::and_then` has been removed as `FallibleIterator::map` is now equivalent.
18
19### Added
20
21* Added `step_by`, `for_each`, `skip_while`, `take_while`, `skip`, `scan`, `flat_map`, `flatten`, `inspect`,
22    `partition`, `find_map`, `max_by`, `min_by`, `unzip`, `cycle`, and `try_fold` to `FallibleIterator`.
23* Added `rfold` and `try_rfold` to `DoubleEndedFallibleIterator`.
24
25[Unreleased]: https://github.com/sfackler/rust-fallible-iterator/compare/v0.2.0...master
26[v0.2.0]: https://github.com/sfackler/rust-fallible-iterator/compare/v0.1.5...v0.2.0
27