Skip to content

2.0.0

Latest
Compare
Choose a tag to compare
@jimmycuadra jimmycuadra released this 17 Sep 11:40

Breaking changes:

  • retry::Error is now a struct with public fields instead of an enum with a useless Internal variant. (See #38 and #42.)
  • retry::delay::Exponential::from_millis now uses an exponential backoff factor of 2.0 instead of whatever the initial delay is. If you want the old behavior, use retry::delay::Exponential::from_millis_with_base_factor instead. (See #31.)

Improvements:

Fixes:

  • Fixed a broken external link in the documentation.