| Age | Commit message (Expand) | Author | Lines |
| 2025-09-12 | Constify Eq, Ord, PartialOrd | Evgenii Zheltonozhskii | -1/+2 |
| 2025-09-01 | constify impl Try for ControlFlow | Nathaniel McCallum | -2/+4 |
| 2025-04-26 | moved simple test to coretests, introduced more fleshed out doctests for brea... | Jonathan Gruner | -4/+107 |
| 2025-04-24 | implement continue_ok and break_ok for ControlFlow | Jonathan Gruner | -0/+44 |
| 2025-06-12 | Tracking the old name of renamed unstable library attribute | xizheyin | -2/+2 |
| 2025-03-16 | Make ControlFlow must_use | Michael Goulet | -0/+1 |
| 2025-03-06 | Remove #[cfg(not(test))] gates in core | Thalia Archibald | -1/+1 |
| 2025-02-24 | Added into_value const function to ControlFlow<T, T> | Madhav Madhusoodanan | -0/+21 |
| 2024-12-08 | docs: better examples for `std::ops::ControlFlow` | Prajwal S N | -8/+8 |
| 2024-11-30 | Add diagnostic item for `std::ops::ControlFlow` | Samuel Tardieu | -0/+1 |
| 2024-10-15 | replace placeholder version | Josh Stone | -4/+4 |
| 2024-09-25 | Stabilize the `map`/`value` methods on `ControlFlow` | Scott McMurray | -14/+6 |
| 2024-08-12 | Explicitly specify type parameter on FromResidual impls in stdlib. | Zachary S | -1/+3 |
| 2024-07-26 | Fix doc nits | John Arundel | -2/+2 |
| 2023-04-16 | rm const traits in libcore | Deadbeef | -6/+3 |
| 2023-01-27 | Remove `ControlFlow::{BREAK, CONTINUE}` | Scott McMurray | -43/+0 |
| 2022-10-19 | Derive `Eq` and `Hash` for `ControlFlow` | inquisitivecrystal | -1/+3 |
| 2022-09-23 | Constify Residual behind const_try | onestacked | -0/+1 |
| 2022-09-23 | Constifed Try trait | onestacked | -1/+1 |
| 2022-09-22 | Constify {FormResidual, Try} for ControlFlow | onestacked | -2/+4 |
| 2022-07-20 | Add map_continue and continue_value combinators to ControlFlow | benluelo | -0/+35 |
| 2022-02-23 | remove feature gate in control_flow examples | Marcel Hellwig | -2/+0 |
| 2021-12-13 | Rollup merge of #91091 - ecstatic-morse:control-flow-enum-is, r=m-ou-se | Matthias Krüger | -2/+2 |
| 2021-12-02 | Make array::{try_from_fn, try_map} and Iterator::try_find generic over Try | Scott McMurray | -0/+5 |
| 2021-11-20 | Stabilize `ControlFlow::{is_break, is_continue}` | Dylan MacKenzie | -2/+2 |
| 2021-10-31 | Rollup merge of #89446 - chrismit3s:issue-88715-fix, r=joshtriplett | Matthias Krüger | -0/+7 |
| 2021-10-24 | Fix and extend ControlFlow `traverse_inorder` example | Ilya Yanok | -14/+16 |
| 2021-10-23 | Update control_flow.rs | Ilya Yanok | -3/+26 |
| 2021-10-02 | Fix typo and change a word in ControlFlow docs | Christoph Smithmyer | -1/+1 |
| 2021-10-01 | Add paragraph to ControlFlow docs to menion it works with the ? operator (#88... | chrismit3s | -0/+7 |
| 2021-08-21 | Remove the `TryV2` alias | Scott McMurray | -2/+2 |
| 2021-06-28 | Update to new bootstrap compiler | Mark Rousskov | -46/+2 |
| 2021-06-15 | Rollup merge of #85608 - scottmcm:stabilize-control-flow-enum-basics, r=m-ou-se | Yuki Okushi | -3/+3 |
| 2021-06-14 | Master is 1.55 now :( | Scott McMurray | -3/+3 |
| 2021-05-26 | Rollup merge of #85645 - scottmcm:demote-from-into-try, r=yaahc | Yuki Okushi | -8/+7 |
| 2021-05-24 | Demote ControlFlow::{from|into}_try to pub(crate) | Scott McMurray | -8/+7 |
| 2021-05-23 | Stabilize ops::ControlFlow (just the type) | Scott McMurray | -3/+3 |
| 2021-05-19 | #[cfg(bootstrap)] out the v1 try_trait stuff | Scott McMurray | -0/+1 |
| 2021-05-06 | Perf Experiment: Wait, what if I just skip the trait alias | Scott McMurray | -4/+4 |
| 2021-05-06 | Actually implement the feature in the compiler | Scott McMurray | -0/+26 |
| 2021-05-06 | Bootstrapping preparation for the library | Scott McMurray | -7/+6 |
| 2021-04-17 | Add the try_trait_v2 library basics | Scott McMurray | -1/+31 |
| 2021-02-06 | Expand the docs for ops::ControlFlow a bit | Scott McMurray | -3/+83 |
| 2020-12-07 | small `TypeVisitor` refactor | Bastian Kauschke | -0/+14 |
| 2020-10-22 | change the order of type arguments on ControlFlow | Leonora Tindall | -6/+6 |
| 2020-10-21 | Add `ControlFlow::is_{break,continue}` methods | LeSeulArtichaut | -0/+14 |
| 2020-09-04 | Add `BREAK` too, and improve the comments | Scott McMurray | -0/+36 |
| 2020-09-04 | Use ops::ControlFlow in graph::iterate | Scott McMurray | -0/+7 |
| 2020-09-02 | Format ControlFlow changes with rustfmt | Leonora Tindall | -5/+5 |
| 2020-09-01 | Rename and expose LoopState as ControlFlow | Leonora Tindall | -0/+67 |