Skip to content

Latest commit

 

History

History
59 lines (32 loc) · 1.48 KB

CHANGELOG.md

File metadata and controls

59 lines (32 loc) · 1.48 KB

Changelog

This is the changelog for peekmore, a multi-peek variant of Rust's Peekable iterator adapter.

If you found an issue, have a suggestion or want to provide feedback or insights, please feel free to open an issue on the issue tracker.

1.3.0 - 2023-06-05

Added

  • Added PeekMoreIterator::next_if and PeekMoreIterator::next_if_eq #74 #75

1.2.1 - 2023-04-11

Fixed

  • Fix issue with advance_cursor_while, where cursor would incorrectly be decremented #72 #73

1.2.0 - 2022-03-16

Added

  • Added PeekMoreIterator::cursor method #69 #71

1.1.0 - 2022-02-18

Added

  • Added PeekMoreIterator::peek_first method #61

Fixed

  • Fix PeekMoreIterator::truncate_iterator_to_cursor #65

1.0.0 - 2020-12-30

Changed

  • Rename peek_n to peek_amount
  • Updated smallvec to 1.5.0
  • Disable smallvec by default, can still be used by opting in with --feature smallvec