Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@mifeet mifeet released this 08 Dec 13:27
· 1 commit to main since this release

Added apply_transformation() as an extension point to be usable with other libraries:

(fluent_of(1,2,3)
    .apply_transformation(more_itertools.windowed, 2)
    .to_list()) # Produces [(1, 2), (2, 3)]

Breaking changes in version 2.0:

  • Minimum required Python version is now 3.10 (up from 3.8)

Full Changelog: 1.2.0...2.0.0