25 lines
678 B
Markdown
25 lines
678 B
Markdown
# 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
|