File: CHANGELOG.md

package info (click to toggle)
rust-strict-num 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: makefile: 4
file content (25 lines) | stat: -rw-r--r-- 678 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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