Skip to content

Version 2.3.1

Compare
Choose a tag to compare
@ChristopherRabotin ChristopherRabotin released this 22 Nov 21:44
· 699 commits to master since this release
84b9683

Version 2.3.0

New features

  • Can now build a Duration by calling .seconds(), .nanoseconds(), etc. on several primitive types (unsigned and signed ints and f32 and f64) (#96).

Enhancements

  • Migrated the underlying computation from a generic lossless fraction to TwoFloat, a tuple of two 64bit floats to represent time. This led to an 85% reduction in computation time. (#93)
  • Fix odd behavior of nanoseconds in string conversion (#90)
  • Implement FromStr for TimeSystem for a cleaner API (#95)
    Pull request here

Version 2.3.1

Enhancement

  • Errors now implements std:err::Error allowing it to be used as an actual error.