oden/third-party/vendor/strict-num/CHANGELOG.md
2024-03-08 11:03:01 -08:00

678 B

Change Log

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

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

Unreleased

0.1.1

Added

  • PartialEq<{float}> for all types. Meaning one can write:
    let n = FiniteF32::new(1.0).unwrap();
    assert_eq!(n, 1.0);
    // instead of
    assert_eq!(n.get(), 1.0);
    
  • Reexport float_cmp::Ulps

0.1.0 - 2022-07-23

Added

  • Initial version