From e188a36d1c31e17154319fd39096c46731e60dac Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Wed, 22 May 2024 09:57:23 +0900 Subject: [PATCH] chore: Add `since` to `deprecated` Add the `since` field to the `deprecated` attribute for `DateTime::from_time` and `DateTime::to_time`. --- src/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types.rs b/src/types.rs index 269ffb0c..885c8513 100644 --- a/src/types.rs +++ b/src/types.rs @@ -209,7 +209,7 @@ impl DateTime { /// Converts a OffsetDateTime object to a DateTime /// /// Returns `Err` when this object is out of bounds - #[deprecated(note = "use `DateTime::try_from()`")] + #[deprecated(since = "0.6.4", note = "use `DateTime::try_from()` instead")] pub fn from_time(dt: OffsetDateTime) -> Result { dt.try_into() } @@ -226,7 +226,7 @@ impl DateTime { #[cfg(feature = "time")] /// Converts the DateTime to a OffsetDateTime structure - #[deprecated(note = "use `OffsetDateTime::try_from()`")] + #[deprecated(since = "1.3.1", note = "use `OffsetDateTime::try_from()` instead")] pub fn to_time(&self) -> Result { (*self).try_into() }