Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 2.14 KB

changelog.rst

File metadata and controls

59 lines (44 loc) · 2.14 KB

Changelog

GitHub Releases

v1.1.0

  • Add consume(), cycle(), and run_length_encode() to MoreEnumerable class
  • Fix error in ExtremaEnumerable.take() when it takes a slice

v1.0.0

  • Add enumerate(), rank() and rank_by() to MoreEnumerable class
  • Add chunk(), max_by(), min_by(), intersect_by() and union_by() to Enumerable class
  • Enumerable.element_at() now supports negative index
  • Enumerable.take() now supports taking a slice (which is same as Enumerable.elements_in()) to be consistent with .NET 6
  • Enumerable.__getitem__() now supports providing a default value
  • Breaking: Add Enumerable.distinct_by() that returns an Enumerable instance. MoreEnumerable.distinct_by() that returned a MoreEnumerable instance is removed
  • Breaking: Add Enumerable.except_by(). The previous MoreEnumerable.except_by() that took homogeneous values as the second iterable is now renamed as MoreEnumerable.except_by2()

v0.2.1

  • Add pipe() to MoreEnumerable class
  • Enumerable.distinct(), except1(), .union(), .intersect(), .to_lookup(), .join(), .group_by(), .group_join(), MoreEnumerable.distinct_by(), .except_by() now have preliminary support for unhashable keys

v0.2.0

  • Add a MoreEnumerable class containing the following method names: aggregate_right(), distinct_by(), except_by(), flatten(), for_each(), interleave(), maxima_by(), minima_by(), traverse_breath_first() and traverse_depth_first()
  • Add as_more() to Enumerable class

v0.1.2

v0.1.1

v0.1.0

  • Initial releases under the BSD-2-Clause License