From 5e80c65102f85700e1a449847dfa603e589df950 Mon Sep 17 00:00:00 2001 From: CDirkx Date: Fri, 16 Oct 2020 21:29:21 +0200 Subject: [PATCH] Bump version to 1.49.0 Due to the recent release of 1.47.0, this PR will be stabilized in 1.49.0 instead of 1.48.0. --- library/core/src/task/poll.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/core/src/task/poll.rs b/library/core/src/task/poll.rs index a789e4e2593..dc405465f5d 100644 --- a/library/core/src/task/poll.rs +++ b/library/core/src/task/poll.rs @@ -39,7 +39,7 @@ impl Poll { /// Returns `true` if this is `Poll::Ready` #[inline] - #[rustc_const_stable(feature = "const_poll", since = "1.48.0")] + #[rustc_const_stable(feature = "const_poll", since = "1.49.0")] #[stable(feature = "futures_api", since = "1.36.0")] pub const fn is_ready(&self) -> bool { matches!(*self, Poll::Ready(_)) @@ -47,7 +47,7 @@ impl Poll { /// Returns `true` if this is `Poll::Pending` #[inline] - #[rustc_const_stable(feature = "const_poll", since = "1.48.0")] + #[rustc_const_stable(feature = "const_poll", since = "1.49.0")] #[stable(feature = "futures_api", since = "1.36.0")] pub const fn is_pending(&self) -> bool { !self.is_ready()