Skip to content

Commit 71c0980

Browse files
committed
Fix since semver clippy error rust-ndarray#642
1 parent 4c05652 commit 71c0980

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/data_traits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ pub unsafe trait DataMut: Data + RawDataMut {
133133
/// accessed with safe code.
134134
///
135135
/// ***Internal trait, see `Data`.***
136-
#[deprecated(note = "use `Data + RawDataClone` instead", since = "0.13")]
136+
#[deprecated(note = "use `Data + RawDataClone` instead", since = "0.13.0")]
137137
pub trait DataClone: Data + RawDataClone {}
138138

139139
#[allow(deprecated)]

src/numeric/impl_numeric.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ where
314314
/// **Panics** if broadcasting to the same shape isn’t possible.
315315
#[deprecated(
316316
note = "Use `abs_diff_eq` - it requires the `approx` crate feature",
317-
since = "0.13"
317+
since = "0.13.0"
318318
)]
319319
pub fn all_close<S2, E>(&self, rhs: &ArrayBase<S2, E>, tol: A) -> bool
320320
where

0 commit comments

Comments
 (0)