chore: Add since to deprecated

Add the `since` field to the `deprecated` attribute for
`DateTime::from_time` and `DateTime::to_time`.
This commit is contained in:
Shun Sakai 2024-05-22 09:57:23 +09:00
parent dbf2543301
commit e188a36d1c
No known key found for this signature in database
GPG key ID: 36ED1E6026DC1056

View file

@ -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<DateTime, DateTimeRangeError> {
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<OffsetDateTime, ComponentRange> {
(*self).try_into()
}