fix(deps): update rust crate itertools to 0.14.0 #22

Merged
wathiede merged 1 commits from renovate/itertools-0.x into master 2025-02-09 14:30:33 -08:00
Collaborator

This PR contains the following updates:

Package Type Update Change
itertools dependencies minor 0.10.5 -> 0.14.0
itertools dev-dependencies minor 0.10.1 -> 0.14.0

Release Notes

rust-itertools/itertools (itertools)

v0.14.0

Compare Source

Breaking
  • Increased MSRV to 1.63.0 (#​960)
  • Removed generic parameter from cons_tuples (#​988)
Added
  • Added array_combinations (#​991)
  • Added k_smallest_relaxed and variants (#​925)
  • Added next_array and collect_array (#​560)
  • Implemented DoubleEndedIterator for FilterOk (#​948)
  • Implemented DoubleEndedIterator for FilterMapOk (#​950)
Changed
  • Allow Q: ?Sized in Itertools::contains (#​971)
  • Improved hygiene of chain! (#​943)
  • Improved into_group_map_by documentation (#​1000)
  • Improved tree_reduce documentation (#​955)
  • Improved discoverability of merge_join_by (#​966)
  • Improved discoverability of take_while_inclusive (#​972)
  • Improved documentation of find_or_last and find_or_first (#​984)
  • Prevented exponentially large type sizes in tuple_combinations (#​945)
  • Added track_caller attr for asser_equal (#​976)
Notable Internal Changes
  • Fixed clippy lints (#​956, #​987, #​1008)
  • Addressed warnings within doctests (#​964)
  • CI: Run most tests with miri (#​961)
  • CI: Speed up "cargo-semver-checks" action (#​938)
  • Changed an instance of default_features in Cargo.toml to default-features (#​985)

v0.13.0

Compare Source

Breaking
  • Removed implementation of DoubleEndedIterator for ConsTuples (#​853)
  • Made MultiProduct fused and fixed on an empty iterator (#​835, #​834)
  • Changed iproduct! to return tuples for maxi one iterator too (#​870)
  • Changed PutBack::put_back to return the old value (#​880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#​878)
  • Removed TakeWhileInclusive::new (#​912)
Added
  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#​654, #​885)
  • Added Itertools::tail (#​899)
  • Implemented DoubleEndedIterator for ProcessResults (#​910)
  • Implemented Debug for FormatWith (#​931)
  • Added Itertools::get (#​891)
Changed
  • Deprecated Itertools::group_by (renamed chunk_by) (#​866, #​879)
  • Deprecated unfold (use std::iter::from_fn instead) (#​871)
  • Optimized GroupingMapBy (#​873, #​876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#​886)
  • Relaxed Debug/Clone bounds for MapInto (#​889)
  • Documented the use_alloc feature (#​887)
  • Optimized Itertools::set_from (#​888)
  • Removed badges in README.md (#​890)
  • Added "no-std" categories in Cargo.toml (#​894)
  • Fixed Itertools::k_smallest on short unfused iterators (#​900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#​895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#​902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#​909)
  • Specialized Combinations::nth (#​914)
  • Specialized MergeBy::fold (#​920)
  • Specialized CombinationsWithReplacement::nth (#​923)
  • Specialized FlattenOk::{fold, rfold} (#​927)
  • Specialized Powerset::nth (#​924)
  • Documentation fixes (#​882, #​936)
  • Fixed assert_equal for iterators longer than i32::MAX (#​932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#​939)
Notable Internal Changes
  • Tested iterator laziness (#​792)
  • Created CONTRIBUTING.md (#​767)

v0.12.1

Compare Source

Added
  • Documented iteration order guarantee for Itertools::[tuple_]combinations (#​822)
  • Documented possible panic in iterate (#​842)
  • Implemented Clone and Debug for Diff (#​845)
  • Implemented Debug for WithPosition (#​859)
  • Implemented Eq for MinMaxResult (#​838)
  • Implemented From<EitherOrBoth<A, B>> for Option<Either<A, B>> (#​843)
  • Implemented PeekingNext for RepeatN (#​855)
Changed
  • Made CoalesceBy lazy (#​801)
  • Optimized Filter[Map]Ok::next, Itertools::partition, Unique[By]::next[_back] (#​818)
  • Optimized Itertools::find_position (#​837)
  • Optimized Positions::next[_back] (#​816)
  • Optimized ZipLongest::fold (#​854)
  • Relaxed Debug bounds for GroupingMapBy (#​860)
  • Specialized ExactlyOneError::fold (#​826)
  • Specialized Interleave[Shortest]::fold (#​849)
  • Specialized MultiPeek::fold (#​820)
  • Specialized PadUsing::[r]fold (#​825)
  • Specialized PeekNth::fold (#​824)
  • Specialized Positions::[r]fold (#​813)
  • Specialized PutBackN::fold (#​823)
  • Specialized RepeatN::[r]fold (#​821)
  • Specialized TakeWhileInclusive::fold (#​851)
  • Specialized ZipLongest::rfold (#​848)
Notable Internal Changes

v0.12.0

Compare Source

Breaking
  • Made take_while_inclusive consume iterator by value (#​709)
  • Added Clone bound to Unique (#​777)
Added
  • Added Itertools::try_len (#​723)
  • Added free function sort_unstable (#​796)
  • Added GroupMap::fold_with (#​778, #​785)
  • Added PeekNth::{peek_mut, peek_nth_mut} (#​716)
  • Added PeekNth::{next_if, next_if_eq} (#​734)
  • Added conversion into (Option<A>,Option<B>) to EitherOrBoth (#​713)
  • Added conversion from Either<A, B> to EitherOrBoth<A, B> (#​715)
  • Implemented ExactSizeIterator for Tuples (#​761)
  • Implemented ExactSizeIterator for (Circular)TupleWindows (#​752)
  • Made EitherOrBoth<T> a shorthand for EitherOrBoth<T, T> (#​719)
Changed
  • Added missing #[must_use] annotations on iterator adaptors (#​794)
  • Made Combinations lazy (#​795)
  • Made Intersperse(With) lazy (#​797)
  • Made Permutations lazy (#​793)
  • Made Product lazy (#​800)
  • Made TupleWindows lazy (#​602)
  • Specialized Combinations::{count, size_hint} (#​729)
  • Specialized CombinationsWithReplacement::{count, size_hint} (#​737)
  • Specialized Powerset::fold (#​765)
  • Specialized Powerset::count (#​735)
  • Specialized TupleCombinations::{count, size_hint} (#​763)
  • Specialized TupleCombinations::fold (#​775)
  • Specialized WhileSome::fold (#​780)
  • Specialized WithPosition::fold (#​772)
  • Specialized ZipLongest::fold (#​774)
  • Changed {min, max}_set* operations require alloc feature, instead of std (#​760)
  • Improved documentation of tree_fold1 (#​787)
  • Improved documentation of permutations (#​724)
  • Fixed typo in documentation of multiunzip (#​770)
Notable Internal Changes

v0.11.0

Compare Source

Breaking
  • Make Itertools::merge_join_by also accept functions returning bool (#​704)
  • Implement PeekingNext transitively over mutable references (#​643)
  • Change with_position to yield (Position, Item) instead of Position<Item> (#​699)
Added
  • Add Itertools::take_while_inclusive (#​616)
  • Implement PeekingNext for PeekingTakeWhile (#​644)
  • Add EitherOrBoth::{just_left, just_right, into_left, into_right, as_deref, as_deref_mut, left_or_insert, right_or_insert, left_or_insert_with, right_or_insert_with, insert_left, insert_right, insert_both} (#​629)
  • Implement Clone for CircularTupleWindows (#​686)
  • Implement Clone for Chunks (#​683)
  • Add Itertools::process_results (#​680)
Changed
  • Use Cell instead of RefCell in Format and FormatWith (#​608)
  • CI tweaks (#​674, #​675)
  • Document and test the difference between stable and unstable sorts (#​653)
  • Fix documentation error on Itertools::max_set_by_key (#​692)
  • Move MSRV metadata to Cargo.toml (#​672)
  • Implement equal with Iterator::eq (#​591)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [itertools](https://github.com/rust-itertools/itertools) | dependencies | minor | `0.10.5` -> `0.14.0` | | [itertools](https://github.com/rust-itertools/itertools) | dev-dependencies | minor | `0.10.1` -> `0.14.0` | --- ### Release Notes <details> <summary>rust-itertools/itertools (itertools)</summary> ### [`v0.14.0`](https://github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#0140) [Compare Source](https://github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0) ##### Breaking - Increased MSRV to 1.63.0 ([#&#8203;960](https://github.com/rust-itertools/itertools/issues/960)) - Removed generic parameter from `cons_tuples` ([#&#8203;988](https://github.com/rust-itertools/itertools/issues/988)) ##### Added - Added `array_combinations` ([#&#8203;991](https://github.com/rust-itertools/itertools/issues/991)) - Added `k_smallest_relaxed` and variants ([#&#8203;925](https://github.com/rust-itertools/itertools/issues/925)) - Added `next_array` and `collect_array` ([#&#8203;560](https://github.com/rust-itertools/itertools/issues/560)) - Implemented `DoubleEndedIterator` for `FilterOk` ([#&#8203;948](https://github.com/rust-itertools/itertools/issues/948)) - Implemented `DoubleEndedIterator` for `FilterMapOk` ([#&#8203;950](https://github.com/rust-itertools/itertools/issues/950)) ##### Changed - Allow `Q: ?Sized` in `Itertools::contains` ([#&#8203;971](https://github.com/rust-itertools/itertools/issues/971)) - Improved hygiene of `chain!` ([#&#8203;943](https://github.com/rust-itertools/itertools/issues/943)) - Improved `into_group_map_by` documentation ([#&#8203;1000](https://github.com/rust-itertools/itertools/issues/1000)) - Improved `tree_reduce` documentation ([#&#8203;955](https://github.com/rust-itertools/itertools/issues/955)) - Improved discoverability of `merge_join_by` ([#&#8203;966](https://github.com/rust-itertools/itertools/issues/966)) - Improved discoverability of `take_while_inclusive` ([#&#8203;972](https://github.com/rust-itertools/itertools/issues/972)) - Improved documentation of `find_or_last` and `find_or_first` ([#&#8203;984](https://github.com/rust-itertools/itertools/issues/984)) - Prevented exponentially large type sizes in `tuple_combinations` ([#&#8203;945](https://github.com/rust-itertools/itertools/issues/945)) - Added `track_caller` attr for `asser_equal` ([#&#8203;976](https://github.com/rust-itertools/itertools/issues/976)) ##### Notable Internal Changes - Fixed clippy lints ([#&#8203;956](https://github.com/rust-itertools/itertools/issues/956), [#&#8203;987](https://github.com/rust-itertools/itertools/issues/987), [#&#8203;1008](https://github.com/rust-itertools/itertools/issues/1008)) - Addressed warnings within doctests ([#&#8203;964](https://github.com/rust-itertools/itertools/issues/964)) - CI: Run most tests with miri ([#&#8203;961](https://github.com/rust-itertools/itertools/issues/961)) - CI: Speed up "cargo-semver-checks" action ([#&#8203;938](https://github.com/rust-itertools/itertools/issues/938)) - Changed an instance of `default_features` in `Cargo.toml` to `default-features` ([#&#8203;985](https://github.com/rust-itertools/itertools/issues/985)) ### [`v0.13.0`](https://github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#0130) [Compare Source](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0) ##### Breaking - Removed implementation of `DoubleEndedIterator` for `ConsTuples` ([#&#8203;853](https://github.com/rust-itertools/itertools/issues/853)) - Made `MultiProduct` fused and fixed on an empty iterator ([#&#8203;835](https://github.com/rust-itertools/itertools/issues/835), [#&#8203;834](https://github.com/rust-itertools/itertools/issues/834)) - Changed `iproduct!` to return tuples for maxi one iterator too ([#&#8203;870](https://github.com/rust-itertools/itertools/issues/870)) - Changed `PutBack::put_back` to return the old value ([#&#8203;880](https://github.com/rust-itertools/itertools/issues/880)) - Removed deprecated `repeat_call, Itertools::{foreach, step, map_results, fold_results}` ([#&#8203;878](https://github.com/rust-itertools/itertools/issues/878)) - Removed `TakeWhileInclusive::new` ([#&#8203;912](https://github.com/rust-itertools/itertools/issues/912)) ##### Added - Added `Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key}` ([#&#8203;654](https://github.com/rust-itertools/itertools/issues/654), [#&#8203;885](https://github.com/rust-itertools/itertools/issues/885)) - Added `Itertools::tail` ([#&#8203;899](https://github.com/rust-itertools/itertools/issues/899)) - Implemented `DoubleEndedIterator` for `ProcessResults` ([#&#8203;910](https://github.com/rust-itertools/itertools/issues/910)) - Implemented `Debug` for `FormatWith` ([#&#8203;931](https://github.com/rust-itertools/itertools/issues/931)) - Added `Itertools::get` ([#&#8203;891](https://github.com/rust-itertools/itertools/issues/891)) ##### Changed - Deprecated `Itertools::group_by` (renamed `chunk_by`) ([#&#8203;866](https://github.com/rust-itertools/itertools/issues/866), [#&#8203;879](https://github.com/rust-itertools/itertools/issues/879)) - Deprecated `unfold` (use `std::iter::from_fn` instead) ([#&#8203;871](https://github.com/rust-itertools/itertools/issues/871)) - Optimized `GroupingMapBy` ([#&#8203;873](https://github.com/rust-itertools/itertools/issues/873), [#&#8203;876](https://github.com/rust-itertools/itertools/issues/876)) - Relaxed `Fn` bounds to `FnMut` in `diff_with, Itertools::into_group_map_by` ([#&#8203;886](https://github.com/rust-itertools/itertools/issues/886)) - Relaxed `Debug/Clone` bounds for `MapInto` ([#&#8203;889](https://github.com/rust-itertools/itertools/issues/889)) - Documented the `use_alloc` feature ([#&#8203;887](https://github.com/rust-itertools/itertools/issues/887)) - Optimized `Itertools::set_from` ([#&#8203;888](https://github.com/rust-itertools/itertools/issues/888)) - Removed badges in `README.md` ([#&#8203;890](https://github.com/rust-itertools/itertools/issues/890)) - Added "no-std" categories in `Cargo.toml` ([#&#8203;894](https://github.com/rust-itertools/itertools/issues/894)) - Fixed `Itertools::k_smallest` on short unfused iterators ([#&#8203;900](https://github.com/rust-itertools/itertools/issues/900)) - Deprecated `Itertools::tree_fold1` (renamed `tree_reduce`) ([#&#8203;895](https://github.com/rust-itertools/itertools/issues/895)) - Deprecated `GroupingMap::fold_first` (renamed `reduce`) ([#&#8203;902](https://github.com/rust-itertools/itertools/issues/902)) - Fixed `Itertools::k_smallest(0)` to consume the iterator, optimized `Itertools::k_smallest(1)` ([#&#8203;909](https://github.com/rust-itertools/itertools/issues/909)) - Specialized `Combinations::nth` ([#&#8203;914](https://github.com/rust-itertools/itertools/issues/914)) - Specialized `MergeBy::fold` ([#&#8203;920](https://github.com/rust-itertools/itertools/issues/920)) - Specialized `CombinationsWithReplacement::nth` ([#&#8203;923](https://github.com/rust-itertools/itertools/issues/923)) - Specialized `FlattenOk::{fold, rfold}` ([#&#8203;927](https://github.com/rust-itertools/itertools/issues/927)) - Specialized `Powerset::nth` ([#&#8203;924](https://github.com/rust-itertools/itertools/issues/924)) - Documentation fixes ([#&#8203;882](https://github.com/rust-itertools/itertools/issues/882), [#&#8203;936](https://github.com/rust-itertools/itertools/issues/936)) - Fixed `assert_equal` for iterators longer than `i32::MAX` ([#&#8203;932](https://github.com/rust-itertools/itertools/issues/932)) - Updated the `must_use` message of non-lazy `KMergeBy` and `TupleCombinations` ([#&#8203;939](https://github.com/rust-itertools/itertools/issues/939)) ##### Notable Internal Changes - Tested iterator laziness ([#&#8203;792](https://github.com/rust-itertools/itertools/issues/792)) - Created `CONTRIBUTING.md` ([#&#8203;767](https://github.com/rust-itertools/itertools/issues/767)) ### [`v0.12.1`](https://github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#0121) [Compare Source](https://github.com/rust-itertools/itertools/compare/v0.12.0...v0.12.1) ##### Added - Documented iteration order guarantee for `Itertools::[tuple_]combinations` ([#&#8203;822](https://github.com/rust-itertools/itertools/issues/822)) - Documented possible panic in `iterate` ([#&#8203;842](https://github.com/rust-itertools/itertools/issues/842)) - Implemented `Clone` and `Debug` for `Diff` ([#&#8203;845](https://github.com/rust-itertools/itertools/issues/845)) - Implemented `Debug` for `WithPosition` ([#&#8203;859](https://github.com/rust-itertools/itertools/issues/859)) - Implemented `Eq` for `MinMaxResult` ([#&#8203;838](https://github.com/rust-itertools/itertools/issues/838)) - Implemented `From<EitherOrBoth<A, B>>` for `Option<Either<A, B>>` ([#&#8203;843](https://github.com/rust-itertools/itertools/issues/843)) - Implemented `PeekingNext` for `RepeatN` ([#&#8203;855](https://github.com/rust-itertools/itertools/issues/855)) ##### Changed - Made `CoalesceBy` lazy ([#&#8203;801](https://github.com/rust-itertools/itertools/issues/801)) - Optimized `Filter[Map]Ok::next`, `Itertools::partition`, `Unique[By]::next[_back]` ([#&#8203;818](https://github.com/rust-itertools/itertools/issues/818)) - Optimized `Itertools::find_position` ([#&#8203;837](https://github.com/rust-itertools/itertools/issues/837)) - Optimized `Positions::next[_back]` ([#&#8203;816](https://github.com/rust-itertools/itertools/issues/816)) - Optimized `ZipLongest::fold` ([#&#8203;854](https://github.com/rust-itertools/itertools/issues/854)) - Relaxed `Debug` bounds for `GroupingMapBy` ([#&#8203;860](https://github.com/rust-itertools/itertools/issues/860)) - Specialized `ExactlyOneError::fold` ([#&#8203;826](https://github.com/rust-itertools/itertools/issues/826)) - Specialized `Interleave[Shortest]::fold` ([#&#8203;849](https://github.com/rust-itertools/itertools/issues/849)) - Specialized `MultiPeek::fold` ([#&#8203;820](https://github.com/rust-itertools/itertools/issues/820)) - Specialized `PadUsing::[r]fold` ([#&#8203;825](https://github.com/rust-itertools/itertools/issues/825)) - Specialized `PeekNth::fold` ([#&#8203;824](https://github.com/rust-itertools/itertools/issues/824)) - Specialized `Positions::[r]fold` ([#&#8203;813](https://github.com/rust-itertools/itertools/issues/813)) - Specialized `PutBackN::fold` ([#&#8203;823](https://github.com/rust-itertools/itertools/issues/823)) - Specialized `RepeatN::[r]fold` ([#&#8203;821](https://github.com/rust-itertools/itertools/issues/821)) - Specialized `TakeWhileInclusive::fold` ([#&#8203;851](https://github.com/rust-itertools/itertools/issues/851)) - Specialized `ZipLongest::rfold` ([#&#8203;848](https://github.com/rust-itertools/itertools/issues/848)) ##### Notable Internal Changes - Added test coverage in CI ([#&#8203;847](https://github.com/rust-itertools/itertools/issues/847), [#&#8203;856](https://github.com/rust-itertools/itertools/issues/856)) - Added semver check in CI ([#&#8203;784](https://github.com/rust-itertools/itertools/issues/784)) - Enforced `clippy` in CI ([#&#8203;740](https://github.com/rust-itertools/itertools/issues/740)) - Enforced `rustdoc` in CI ([#&#8203;840](https://github.com/rust-itertools/itertools/issues/840)) - Improved specialization tests ([#&#8203;807](https://github.com/rust-itertools/itertools/issues/807)) - More specialization benchmarks ([#&#8203;806](https://github.com/rust-itertools/itertools/issues/806)) ### [`v0.12.0`](https://github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#0120) [Compare Source](https://github.com/rust-itertools/itertools/compare/v0.11.0...v0.12.0) ##### Breaking - Made `take_while_inclusive` consume iterator by value ([#&#8203;709](https://github.com/rust-itertools/itertools/issues/709)) - Added `Clone` bound to `Unique` ([#&#8203;777](https://github.com/rust-itertools/itertools/issues/777)) ##### Added - Added `Itertools::try_len` ([#&#8203;723](https://github.com/rust-itertools/itertools/issues/723)) - Added free function `sort_unstable` ([#&#8203;796](https://github.com/rust-itertools/itertools/issues/796)) - Added `GroupMap::fold_with` ([#&#8203;778](https://github.com/rust-itertools/itertools/issues/778), [#&#8203;785](https://github.com/rust-itertools/itertools/issues/785)) - Added `PeekNth::{peek_mut, peek_nth_mut}` ([#&#8203;716](https://github.com/rust-itertools/itertools/issues/716)) - Added `PeekNth::{next_if, next_if_eq}` ([#&#8203;734](https://github.com/rust-itertools/itertools/issues/734)) - Added conversion into `(Option<A>,Option<B>)` to `EitherOrBoth` ([#&#8203;713](https://github.com/rust-itertools/itertools/issues/713)) - Added conversion from `Either<A, B>` to `EitherOrBoth<A, B>` ([#&#8203;715](https://github.com/rust-itertools/itertools/issues/715)) - Implemented `ExactSizeIterator` for `Tuples` ([#&#8203;761](https://github.com/rust-itertools/itertools/issues/761)) - Implemented `ExactSizeIterator` for `(Circular)TupleWindows` ([#&#8203;752](https://github.com/rust-itertools/itertools/issues/752)) - Made `EitherOrBoth<T>` a shorthand for `EitherOrBoth<T, T>` ([#&#8203;719](https://github.com/rust-itertools/itertools/issues/719)) ##### Changed - Added missing `#[must_use]` annotations on iterator adaptors ([#&#8203;794](https://github.com/rust-itertools/itertools/issues/794)) - Made `Combinations` lazy ([#&#8203;795](https://github.com/rust-itertools/itertools/issues/795)) - Made `Intersperse(With)` lazy ([#&#8203;797](https://github.com/rust-itertools/itertools/issues/797)) - Made `Permutations` lazy ([#&#8203;793](https://github.com/rust-itertools/itertools/issues/793)) - Made `Product` lazy ([#&#8203;800](https://github.com/rust-itertools/itertools/issues/800)) - Made `TupleWindows` lazy ([#&#8203;602](https://github.com/rust-itertools/itertools/issues/602)) - Specialized `Combinations::{count, size_hint}` ([#&#8203;729](https://github.com/rust-itertools/itertools/issues/729)) - Specialized `CombinationsWithReplacement::{count, size_hint}` ([#&#8203;737](https://github.com/rust-itertools/itertools/issues/737)) - Specialized `Powerset::fold` ([#&#8203;765](https://github.com/rust-itertools/itertools/issues/765)) - Specialized `Powerset::count` ([#&#8203;735](https://github.com/rust-itertools/itertools/issues/735)) - Specialized `TupleCombinations::{count, size_hint}` ([#&#8203;763](https://github.com/rust-itertools/itertools/issues/763)) - Specialized `TupleCombinations::fold` ([#&#8203;775](https://github.com/rust-itertools/itertools/issues/775)) - Specialized `WhileSome::fold` ([#&#8203;780](https://github.com/rust-itertools/itertools/issues/780)) - Specialized `WithPosition::fold` ([#&#8203;772](https://github.com/rust-itertools/itertools/issues/772)) - Specialized `ZipLongest::fold` ([#&#8203;774](https://github.com/rust-itertools/itertools/issues/774)) - Changed `{min, max}_set*` operations require `alloc` feature, instead of `std` ([#&#8203;760](https://github.com/rust-itertools/itertools/issues/760)) - Improved documentation of `tree_fold1` ([#&#8203;787](https://github.com/rust-itertools/itertools/issues/787)) - Improved documentation of `permutations` ([#&#8203;724](https://github.com/rust-itertools/itertools/issues/724)) - Fixed typo in documentation of `multiunzip` ([#&#8203;770](https://github.com/rust-itertools/itertools/issues/770)) ##### Notable Internal Changes - Improved specialization tests ([#&#8203;799](https://github.com/rust-itertools/itertools/issues/799), [#&#8203;786](https://github.com/rust-itertools/itertools/issues/786), [#&#8203;782](https://github.com/rust-itertools/itertools/issues/782)) - Simplified implementation of `Permutations` ([#&#8203;739](https://github.com/rust-itertools/itertools/issues/739), [#&#8203;748](https://github.com/rust-itertools/itertools/issues/748), [#&#8203;790](https://github.com/rust-itertools/itertools/issues/790)) - Combined `Merge`/`MergeBy`/`MergeJoinBy` implementations ([#&#8203;736](https://github.com/rust-itertools/itertools/issues/736)) - Simplified `Permutations::size_hint` ([#&#8203;739](https://github.com/rust-itertools/itertools/issues/739)) - Fix wrapping arithmetic in benchmarks ([#&#8203;770](https://github.com/rust-itertools/itertools/issues/770)) - Enforced `rustfmt` in CI ([#&#8203;751](https://github.com/rust-itertools/itertools/issues/751)) - Disallowed compile warnings in CI ([#&#8203;720](https://github.com/rust-itertools/itertools/issues/720)) - Used `cargo hack` to check MSRV ([#&#8203;754](https://github.com/rust-itertools/itertools/issues/754)) ### [`v0.11.0`](https://github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#0110) [Compare Source](https://github.com/rust-itertools/itertools/compare/v0.10.5...v0.11.0) ##### Breaking - Make `Itertools::merge_join_by` also accept functions returning bool ([#&#8203;704](https://github.com/rust-itertools/itertools/issues/704)) - Implement `PeekingNext` transitively over mutable references ([#&#8203;643](https://github.com/rust-itertools/itertools/issues/643)) - Change `with_position` to yield `(Position, Item)` instead of `Position<Item>` ([#&#8203;699](https://github.com/rust-itertools/itertools/issues/699)) ##### Added - Add `Itertools::take_while_inclusive` ([#&#8203;616](https://github.com/rust-itertools/itertools/issues/616)) - Implement `PeekingNext` for `PeekingTakeWhile` ([#&#8203;644](https://github.com/rust-itertools/itertools/issues/644)) - Add `EitherOrBoth::{just_left, just_right, into_left, into_right, as_deref, as_deref_mut, left_or_insert, right_or_insert, left_or_insert_with, right_or_insert_with, insert_left, insert_right, insert_both}` ([#&#8203;629](https://github.com/rust-itertools/itertools/issues/629)) - Implement `Clone` for `CircularTupleWindows` ([#&#8203;686](https://github.com/rust-itertools/itertools/issues/686)) - Implement `Clone` for `Chunks` ([#&#8203;683](https://github.com/rust-itertools/itertools/issues/683)) - Add `Itertools::process_results` ([#&#8203;680](https://github.com/rust-itertools/itertools/issues/680)) ##### Changed - Use `Cell` instead of `RefCell` in `Format` and `FormatWith` ([#&#8203;608](https://github.com/rust-itertools/itertools/issues/608)) - CI tweaks ([#&#8203;674](https://github.com/rust-itertools/itertools/issues/674), [#&#8203;675](https://github.com/rust-itertools/itertools/issues/675)) - Document and test the difference between stable and unstable sorts ([#&#8203;653](https://github.com/rust-itertools/itertools/issues/653)) - Fix documentation error on `Itertools::max_set_by_key` ([#&#8203;692](https://github.com/rust-itertools/itertools/issues/692)) - Move MSRV metadata to `Cargo.toml` ([#&#8203;672](https://github.com/rust-itertools/itertools/issues/672)) - Implement `equal` with `Iterator::eq` ([#&#8203;591](https://github.com/rust-itertools/itertools/issues/591)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovatebot added 1 commit 2025-02-09 12:16:57 -08:00
wathiede merged commit 977bcd0bf4 into master 2025-02-09 14:30:33 -08:00
wathiede deleted branch renovate/itertools-0.x 2025-02-09 14:30:33 -08:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: wathiede/letterbox#22
No description provided.