Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
25
third-party/vendor/strict-num/CHANGELOG.md
vendored
Normal file
25
third-party/vendor/strict-num/CHANGELOG.md
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.1.1]
|
||||
### Added
|
||||
- `PartialEq<{float}>` for all types. Meaning one can write:
|
||||
```rust
|
||||
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
|
||||
|
||||
[Unreleased]: https://github.com/RazrFalcon/strict-num/compare/v0.1.1...HEAD
|
||||
[0.1.1]: https://github.com/RazrFalcon/strict-num/compare/v0.1.0...v0.1.1
|
||||
Loading…
Add table
Add a link
Reference in a new issue