include recip release notes in README

This commit is contained in:
Trevor Spiteri 2020-10-22 11:21:54 +02:00
parent 77a1e85504
commit 0af3a4b4af
1 changed files with 13 additions and 0 deletions

View File

@ -80,6 +80,12 @@ The conversions supported cover the following cases.
### Version 1.4.0 news (unreleased)
* The following methods were added to all fixed-point types, to the
[`Fixed`][tf-1-4] trait, and to the [`Wrapping`][w-1-4] wrapper:
* [`recip`][f-rec-1-4], [`checked_recip`][f-crec-1-4],
[`saturating_recip`][f-srec-1-4],
[`wrapping_recip`][f-wrec-1-4],
[`overflowing_recip`][f-orec-1-4]
* For the experimental feature [`num-traits`][feat-exp-1-4], the
following traits were implemented where applicable ([issue 23]):
* [`Num`][nt-0-2-num]
@ -93,6 +99,11 @@ The conversions supported cover the following cases.
to write manually ([issue 24]). This makes it incompatible with
the version in 1.3.0.
[f-crec-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.checked_recip
[f-orec-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.overflowing_recip
[f-rec-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.recip
[f-srec-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.saturating_recip
[f-wrec-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.wrapping_recip
[feat-exp-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/#experimental-optional-features
[issue 23]: https://gitlab.com/tspiteri/fixed/-/issues/23
[issue 24]: https://gitlab.com/tspiteri/fixed/-/issues/24
@ -105,6 +116,8 @@ The conversions supported cover the following cases.
[nt-0-2-signed]: https://docs.rs/num-traits/^0.2/num_traits/sign/trait.Signed.html
[nt-0-2-tp]: https://docs.rs/num-traits/^0.2/num_traits/cast/trait.ToPrimitive.html
[nt-0-2-unsigned]: https://docs.rs/num-traits/^0.2/num_traits/sign/trait.Unsigned.html
[tf-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/traits/trait.Fixed.html
[w-1-4]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.Wrapping.html
### Version 1.3.0 news (2020-10-15)