From d48a649a17401d5c5fc25e9484b41f8b4643e6c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Sat, 4 Aug 2018 00:47:13 +0300 Subject: [PATCH] 1.29.0 -> 1.30.0 --- src/libcore/time.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/libcore/time.rs b/src/libcore/time.rs index fff47ac44ef..6ab8e18adc8 100644 --- a/src/libcore/time.rs +++ b/src/libcore/time.rs @@ -502,7 +502,7 @@ impl Mul for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Mul for u32 { type Output = Duration; @@ -511,7 +511,7 @@ impl Mul for u32 { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Mul for Duration { type Output = Duration; @@ -535,7 +535,7 @@ impl Mul for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Mul for f64 { type Output = Duration; @@ -551,7 +551,7 @@ impl MulAssign for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl MulAssign for Duration { fn mul_assign(&mut self, rhs: f64) { *self = *self * rhs; @@ -567,7 +567,7 @@ impl Div for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Div for Duration { type Output = Duration; @@ -591,7 +591,7 @@ impl Div for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Div for Duration { type Output = f64; @@ -610,7 +610,7 @@ impl DivAssign for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl DivAssign for Duration { fn div_assign(&mut self, rhs: f64) { *self = *self / rhs;