Skip to content

Latest commit

 

History

History
50 lines (27 loc) · 1.35 KB

CHANGELOG.md

File metadata and controls

50 lines (27 loc) · 1.35 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project (will try to) adhere to Semantic Versioning.

Legend

The following icons are used to distinguish breaking changes from non-breaking changes.

  • 🔥: Breaking change (high impact: will require code changes for most users)
  • 💔: Breaking change (low impact: won't require code changes for most users)

0.7.5

Fixed

  • Fix bug in sample where the sampler was not being polled until Pending when the inner value was not ready yet, which meant that the waker was not being called on the sampler

0.7.4

Fixed

  • Removed faulty constraints on flat_map_switch combinator

0.7.3

Added

  • Added flat_map_switch combinator

0.7.2

Fixed

  • Fixed an issue with FlattenSwitch where the inner stream could be polled again after termination.

0.7.0

Added

  • 💔 Added ThrottleLast combinator.
  • Added "test-util" feature with some helper methods for testing such as record_delay and delay_items.

0.6.0

Changed

  • 🔥 Changed Sample combinator Item to be T instead of Option<T>. The stream will no longer yield None when the sampler yields and no value is available on the underlying stream.