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:
parent
dbf2543301
commit
e188a36d1c
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue