From 0adbf4435efdbeb7871f26fc38f07e0f8b45b206 Mon Sep 17 00:00:00 2001 From: Trevor Spiteri Date: Sat, 18 Apr 2020 19:28:05 +0200 Subject: [PATCH] at least one more release before 1.0.0 to deprecate items --- README.md | 24 +++++++++++++----------- RELEASES.md | 4 +++- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 3504b0f..72409bb 100644 --- a/README.md +++ b/README.md @@ -74,20 +74,22 @@ The conversions supported cover the following cases. ## What’s 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) diff --git a/RELEASES.md b/RELEASES.md index 6480fa4..1054a6c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -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 --------------------