at least one more release before 1.0.0 to deprecate items

This commit is contained in:
Trevor Spiteri 2020-04-18 19:28:05 +02:00
parent 672973c99f
commit 0adbf4435e
2 changed files with 16 additions and 12 deletions

View File

@ -74,20 +74,22 @@ The conversions supported cover the following cases.
## Whats new
### Version 1.0.0 news (unreleased)
### Version 0.5.6 news (unreleased)
* The following method were added to signed fixed-point types and to
the [`FixedSigned`][tfs-1-0] trait:
* [`checked_signum`][f-csig-1-0],
[`saturating_signum`][f-ssig-1-0],
[`wrapping_signum`][f-wsig-1-0],
[`overflowing_signum`][f-osig-1-0]
the [`FixedSigned`][tfs-0-5-6] trait:
* [`checked_signum`][f-csig-0-5-6],
[`saturating_signum`][f-ssig-0-5-6],
[`wrapping_signum`][f-wsig-0-5-6],
[`overflowing_signum`][f-osig-0-5-6]
* Casts deprecated in version 0.3.1 of the *az* crate were marked as
deprecated.
[f-csig-1-0]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.checked_signum
[f-osig-1-0]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.overflowing_signum
[f-ssig-1-0]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.saturating_signum
[f-wsig-1-0]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.wrapping_signum
[tfs-1-0]: https://tspiteri.gitlab.io/fixed/dev/fixed/traits/trait.FixedSigned.html
[f-csig-0-5-6]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.checked_signum
[f-osig-0-5-6]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.overflowing_signum
[f-ssig-0-5-6]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.saturating_signum
[f-wsig-0-5-6]: https://tspiteri.gitlab.io/fixed/dev/fixed/struct.FixedI32.html#method.wrapping_signum
[tfs-0-5-6]: https://tspiteri.gitlab.io/fixed/dev/fixed/traits/trait.FixedSigned.html
### Version 0.5.5 news (2020-04-16)

View File

@ -5,7 +5,7 @@ modification, are permitted in any medium without royalty provided the
copyright notice and this notice are preserved. This file is offered
as-is, without any warranty. -->
Version 1.0.0 (unreleased)
Version 0.5.6 (unreleased)
==========================
* The following method were added to signed fixed-point types and to
@ -100,6 +100,8 @@ Version 0.5.0 (2019-12-06)
* `checked_div_euclid_int`, `checked_rem_euclid_int`
* `wrapping_div_euclid_int`, `wrapping_rem_euclid_int`
* `overflowing_div_euclid_int`, `overflowing_rem_euclid_int`
* Casts deprecated in version 0.3.1 of the *az* crate were marked as
deprecated.
Incompatible changes
--------------------