Merge pull request #141 from sorairolake/deprecated-since

chore: Add `since` to `deprecated`
This commit is contained in:
Chris Hennick 2024-05-23 03:44:38 +00:00 committed by GitHub
commit ef74a26dd5
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -221,7 +221,7 @@ impl DateTime {
/// Converts a OffsetDateTime object to a DateTime /// Converts a OffsetDateTime object to a DateTime
/// ///
/// Returns `Err` when this object is out of bounds /// 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> { pub fn from_time(dt: OffsetDateTime) -> Result<DateTime, DateTimeRangeError> {
dt.try_into() dt.try_into()
} }
@ -238,7 +238,7 @@ impl DateTime {
#[cfg(feature = "time")] #[cfg(feature = "time")]
/// Converts the DateTime to a OffsetDateTime structure /// 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> { pub fn to_time(&self) -> Result<OffsetDateTime, ComponentRange> {
(*self).try_into() (*self).try_into()
} }