Releases: reem/rust-ordered-float
Releases · reem/rust-ordered-float
v2.5.1
04 Jun 16:12
Compare
Sorry, something went wrong.
No results found
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
25 May 17:02
Compare
Sorry, something went wrong.
No results found
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.
v2.4.0
21 May 20:30
Compare
Sorry, something went wrong.
No results found
Implement AddAssign, MulAssign, etc. for OrderedFloat<T>.
Implement From<OrderedFloat<Self>> for f32 and f64.
Add inline attributes to more methods.
Minor code cleanup.
v2.3.0
21 May 19:21
Compare
Sorry, something went wrong.
No results found
Implement traits from std::ops for reference types (#82 ).
Add more high-level documentation and examples.
v2.2.0
03 May 16:22
Compare
Sorry, something went wrong.
No results found
Add optional schemars feature (#78 ).
Re-export the Float trait (#79 ).
v2.1.1
05 Feb 16:19
Compare
Sorry, something went wrong.
No results found
Fix a compiler error when building without the std feature (#74 ).
v2.1.0
04 Feb 18:16
Compare
Sorry, something went wrong.
No results found
Implement more numeric traits for OrderedFloat<T> (#73 ).
Implement From<&T> for &OrderedFloat<T> (#72 ).
v2.0.1
06 Dec 19:41
Compare
Sorry, something went wrong.
No results found
Make assignment operators panic safe (#71 ). This fixes a bug that could cause undefined behavior in safe code.
v1.1.1
06 Dec 19:46
Compare
Sorry, something went wrong.
No results found
Make assignment operators panic safe (#71 ). This fixes a bug that could cause undefined behavior in safe code.
v2.0.0
10 Jul 22:43
Compare
Sorry, something went wrong.
No results found
The minimum supported Rust toolchain version has increased from 1.28 to 1.34.
NotNan<T> now implements TryFrom<T> instead of From<T>.
NotNan::unchecked_new is now a const fn.
NotNan<T> and OrderedFloat<T> now implement PartialEq<T>.
The deprecated NotNaN type alias has been removed.