Skip to content

Commit 5e80c65

Browse files
authored
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.
1 parent ce1d5ed commit 5e80c65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/task/poll.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ impl<T> Poll<T> {
3939

4040
/// Returns `true` if this is `Poll::Ready`
4141
#[inline]
42-
#[rustc_const_stable(feature = "const_poll", since = "1.48.0")]
42+
#[rustc_const_stable(feature = "const_poll", since = "1.49.0")]
4343
#[stable(feature = "futures_api", since = "1.36.0")]
4444
pub const fn is_ready(&self) -> bool {
4545
matches!(*self, Poll::Ready(_))
4646
}
4747

4848
/// Returns `true` if this is `Poll::Pending`
4949
#[inline]
50-
#[rustc_const_stable(feature = "const_poll", since = "1.48.0")]
50+
#[rustc_const_stable(feature = "const_poll", since = "1.49.0")]
5151
#[stable(feature = "futures_api", since = "1.36.0")]
5252
pub const fn is_pending(&self) -> bool {
5353
!self.is_ready()

0 commit comments

Comments
 (0)