Releases: reem/rust-ordered-float
Releases · reem/rust-ordered-float
v3.2.0
- Implement LowerExp and UpperExp (scientific notation) display formatting traits (#112).
v3.1.0
- Implement AsPrimitive for OrderedFloat (#110)
v3.0.0
- Breaking change: Remove Add/Sub/Mul/Div/Rem impls for
&OrderedFloat
to fix type inference errors (#91).
- Breaking change: Update optional
schemars
dependency to version 0.8.
- Add
NotNan::as_f32
method (#109).
v2.10.0
- Add optional support for the
arbitrary
crate (#104).
v2.9.0
- Implement
Borrow
for NotNan
(#98).
- Implement
From
for integer to NotNan
conversions (#103).
- Reduce the amount of unsafe code (#99).
v2.8.0
- Add optional support for the
rkyv
serialization crate (#96).
v2.7.0
- New optional dependency
proptest
(#94).
v2.6.0
- Implement
Signed
for OrderedFloat
(#93).
v2.5.1
- The
std
feature should not enable the rand/std
feature. This accidentally caused the rand
crate to be enabled by default in 2.5.0. (#90)
v2.5.0
- Rename the
unchecked_new
method to new_unchecked
(#86). The old name is still supported, but deprecated.
- Optionally implement traits from the
rand
crate (#84).
- Improved documentation.