| Age | Commit message (Expand) | Author | Lines |
| 2025-07-08 | Auto merge of #143540 - yotamofek:pr/library/simplify-num-fmt, r=tgross35 | bors | -22/+3 |
| 2025-07-07 | Rollup merge of #143130 - xizheyin:142966, r=ibraheemdev | 许杰友 Jieyou Xu (Joe) | -0/+9 |
| 2025-07-07 | doc(std): clarify `NonZero<T>` usage limitation in doc comment | xizheyin | -0/+9 |
| 2025-07-07 | Rollup merge of #143236 - nxsaken:mixed_integer_ops_unsigned_sub, r=ibraheemdev | Jacob Pratt | -8/+8 |
| 2025-07-06 | Simplify num formatting helpers | Yotam Ofek | -22/+3 |
| 2025-07-04 | Rollup merge of #143395 - Urgau:llvm-fallback-minimum-maximum, r=tgross35 | Jacob Pratt | -2/+2 |
| 2025-07-04 | Rollup merge of #143356 - hkBst:clippy-fix-2, r=scottmcm | Jacob Pratt | -1/+1 |
| 2025-07-03 | Always use the pure Rust fallback instead of `llvm.{maximum,minimum}` | Urgau | -2/+2 |
| 2025-07-03 | Rollup merge of #134006 - klensy:typos, r=nnethercote | Jana Dönszelmann | -3/+3 |
| 2025-07-03 | use unsigned_abs instead of `abs` on signed int to silence clippy | Marijn Schouten | -1/+1 |
| 2025-07-03 | setup CI and tidy to use typos for spellchecking and fix few typos | klensy | -3/+3 |
| 2025-07-02 | Rollup merge of #131923 - ranger-ross:impl-copy-hash-interrorkind, r=tgross35 | Matthias Krüger | -1/+1 |
| 2025-07-01 | Ignore `float_minimum_maximum` doctests on i586 | Josh Stone | -2/+2 |
| 2025-06-30 | Stabilize `mixed_integer_ops_unsigned_sub` | Nurzhan Sakén | -8/+8 |
| 2025-06-20 | integer docs: remove extraneous text | Tshepang Mbambo | -455/+0 |
| 2025-06-12 | chore(doctest): Remove redundant blank lines | Shun Sakai | -2/+0 |
| 2025-06-11 | feat: Add `bit_width` for unsigned integer types | Shun Sakai | -0/+24 |
| 2025-06-09 | Auto merge of #138062 - LorrensP-2158466:miri-enable-float-nondet, r=RalfJung | bors | -2/+2 |
| 2025-06-09 | Rollup merge of #141001 - hkBst:nonzero-char, r=dtolnay | Trevor Gross | -0/+3 |
| 2025-06-08 | De-duplicate f16 & f128 doctest attributes | Urgau | -46/+2 |
| 2025-06-07 | Make NonZero<char> possible | Marijn Schouten | -0/+3 |
| 2025-06-06 | remove extraneous text | Tshepang Mbambo | -33/+0 |
| 2025-06-05 | change tests to use fixed constants to let them pass with miri | LorrensP-2158466 | -2/+2 |
| 2025-06-03 | Rollup merge of #141949 - onur-ozkan:move-test-float-parse, r=Kobzol | Matthias Krüger | -1/+1 |
| 2025-06-03 | Rollup merge of #141921 - ehuss:arm-min-max, r=tgross35 | Matthias Krüger | -2/+2 |
| 2025-06-03 | move `test-float-parse` tool into `src/tools` dir | onur-ozkan | -1/+1 |
| 2025-06-02 | Disable f64 minimum/maximum tests for arm 32 | Eric Huss | -2/+2 |
| 2025-06-02 | add f16_epsilon and f128_epsilon | usamoi | -0/+2 |
| 2025-05-31 | Add const support for float rounding methods | Ruan Comelli | -24/+60 |
| 2025-05-30 | Rollup merge of #141237 - Qelxiros:139911-exact-div, r=workingjubilee | Jubilee | -1/+207 |
| 2025-05-29 | Add `loongarch64` with `d` feature to `f32::midpoint` fast path | WANG Rui | -0/+1 |
| 2025-05-27 | Auto merge of #129658 - saethlin:spare-a-crumb, r=jhpratt | bors | -11/+13 |
| 2025-05-22 | Auto merge of #137198 - tgross35:cfg-match-rename, r=Amanieu | bors | -2/+2 |
| 2025-05-21 | Add some track_caller info to precondition panics | Ben Kimock | -11/+13 |
| 2025-05-20 | Rename `cfg_match!` to `cfg_select!` | Trevor Gross | -2/+2 |
| 2025-05-20 | `core_float_math`: Move functions to `math` folder | Daniel McNab | -772/+828 |
| 2025-05-18 | add exact_div functions | Jeremy Smart | -1/+207 |
| 2025-05-18 | float: Add `f16` parsing and printing | Trevor Gross | -4/+76 |
| 2025-05-17 | Auto merge of #138087 - tgross35:core-float-math, r=Amanieu | bors | -2/+1684 |
| 2025-05-16 | Add assert_unsafe_precondition!()s to as_ascii_unchecked() methods | sam skeoch | -0/+6 |
| 2025-05-16 | Add as_ascii_unchecked() methods to char, str, and u8 | sam skeoch | -0/+14 |
| 2025-05-14 | Skip {f32,f64}::mul_add tests on MinGW | Trevor Gross | -0/+6 |
| 2025-05-13 | Initial implementation of `core_float_math` | Trevor Gross | -2/+1678 |
| 2025-05-12 | update cfg(bootstrap) | Pietro Albini | -12/+12 |
| 2025-05-09 | Add intrinsic fallback for `{minimum,maximum}{16,32,64,128}` | Urgau | -140/+8 |
| 2025-05-09 | Use intrinsics for `{f16,f32,f64,f128}::{minimum,maximum}` operations | Urgau | -68/+132 |
| 2025-05-01 | Rollup merge of #139186 - TDecking:float, r=workingjubilee | Guillaume Gomez | -47/+15 |
| 2025-04-24 | Rollup merge of #140172 - bjoernager:const-float-algebraic, r=RalfJung | Matthias Krüger | -20/+40 |
| 2025-04-24 | Rollup merge of #140150 - RalfJung:MAX_EXP, r=tgross35 | Matthias Krüger | -24/+48 |
| 2025-04-24 | Rollup merge of #136083 - bend-n:⃤⃤, r=lcnr | Matthias Krüger | -4/+14 |