about summary refs log tree commit diff
diff options
context:
space:
mode:
authorScott McMurray <scottmcm@users.noreply.github.com>2021-06-14 10:37:05 -0700
committerScott McMurray <scottmcm@users.noreply.github.com>2021-06-14 10:37:05 -0700
commit590d4526e91d77cc514deb58c3d87e30b3f74db6 (patch)
treee1e2c9ed38df722c5a7d92cc947d3032feda6b38
parent65a0a8b38663751870264fb73815c5586f324b47 (diff)
downloadrust-590d4526e91d77cc514deb58c3d87e30b3f74db6.tar.gz
rust-590d4526e91d77cc514deb58c3d87e30b3f74db6.zip
Master is 1.55 now :(
-rw-r--r--library/core/src/ops/control_flow.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/ops/control_flow.rs b/library/core/src/ops/control_flow.rs
index 4a7da1c3cac..ff1e968a8d1 100644
--- a/library/core/src/ops/control_flow.rs
+++ b/library/core/src/ops/control_flow.rs
@@ -46,15 +46,15 @@ use crate::{convert, ops};
 ///     }
 /// }
 /// ```
-#[stable(feature = "control_flow_enum_type", since = "1.54.0")]
+#[stable(feature = "control_flow_enum_type", since = "1.55.0")]
 #[derive(Debug, Clone, Copy, PartialEq)]
 pub enum ControlFlow<B, C = ()> {
     /// Move on to the next phase of the operation as normal.
-    #[stable(feature = "control_flow_enum_type", since = "1.54.0")]
+    #[stable(feature = "control_flow_enum_type", since = "1.55.0")]
     #[cfg_attr(not(bootstrap), lang = "Continue")]
     Continue(C),
     /// Exit the operation without running subsequent phases.
-    #[stable(feature = "control_flow_enum_type", since = "1.54.0")]
+    #[stable(feature = "control_flow_enum_type", since = "1.55.0")]
     #[cfg_attr(not(bootstrap), lang = "Break")]
     Break(B),
     // Yes, the order of the variants doesn't match the type parameters.