| Age | Commit message (Expand) | Author | Lines |
| 2022-02-12 | Stabilise inherent_ascii_escape (FCP in #77174) | ltdk | -2/+1 |
| 2022-02-12 | Fix signature of u8::escape_ascii | ltdk | -2/+2 |
| 2022-02-07 | Add {floor,ceil}_char_boundary methods to str | ltdk | -0/+5 |
| 2022-01-15 | Add `log2` and `log10` to `NonZeroU*` | Scott McMurray | -8/+8 |
| 2021-11-19 | Turn all 0x1b_u8 into '\x1b' or b'\x1b' | r00ster91 | -10/+10 |
| 2021-11-12 | Remove bigint_helper_methods for *signed* types | Scott McMurray | -14/+1 |
| 2021-11-05 | Reorder `widening_impl`s to make the doc clearer | Yuki Okushi | -18/+18 |
| 2021-11-04 | Add more text and examples to `carrying_{add|mul}" | Scott McMurray | -15/+48 |
| 2021-10-09 | Add #[must_use] to is_condition tests | John Kugelman | -0/+11 |
| 2021-10-09 | Update library/core/src/num/mod.rs | John Kugelman | -1/+1 |
| 2021-10-09 | Add #[must_use] to string/char transformation methods | John Kugelman | -0/+4 |
| 2021-10-06 | Rollup merge of #88523 - kpreid:category, r=yaahc | Manish Goregaokar | -4/+22 |
| 2021-10-01 | Add functions to add unsigned and signed integers | BenoƮt du Garreau | -8/+8 |
| 2021-08-31 | Rollup merge of #85017 - clarfonthey:carrying_widening, r=m-ou-se | Mara Bos | -0/+87 |
| 2021-08-30 | Expand documentation for `FpCategory`. | Kevin Reid | -4/+22 |
| 2021-08-26 | Add carrying_add, borrowing_sub, widening_mul, carrying_mul methods to integers | ltdk | -0/+87 |
| 2021-08-10 | Add Saturating type (based on Wrapping type) | Michael Watzko | -0/+4 |
| 2021-08-03 | Use .contains instead of manual reimplementation. | frogtd | -1/+1 |
| 2021-07-26 | Document math behind MIN/MAX consts on integers | Smitty | -8/+8 |
| 2021-07-07 | special case for integer log10 | Trevor Spiteri | -0/+1 |
| 2021-07-04 | Auto merge of #86048 - nbdd0121:no_floating_point, r=Amanieu | bors | -0/+6 |
| 2021-07-02 | core: add unstable `no_fp_fmt_parse` to disable float fmt/parse code | Gary Guo | -0/+5 |
| 2021-06-23 | Use HTTPS links where possible | Smitty | -2/+2 |
| 2021-06-22 | postpone stabilizaton by one release | Ethan Brierley | -1/+1 |
| 2021-06-14 | stabilize `int_error_matching` | Ethan Brierley | -6/+1 |
| 2021-06-06 | Move `flt2dec::{Formatted, Part}` to dedicated module | Gary Guo | -0/+1 |
| 2021-03-28 | Add escape_default method to u8 and [u8] | ltdk | -0/+26 |
| 2021-02-25 | Rollup merge of #82078 - lopopolo:char-u8-const-fn, r=m-ou-se | Dylan DPC | -4/+7 |
| 2021-02-23 | Make ascii_change_case_unchecked const | Ryan Lopopolo | -1/+1 |
| 2021-02-23 | Update since attributes for new const_ascii_methods_on_intrinsics to 1.52.0 | Ryan Lopopolo | -3/+3 |
| 2021-02-23 | Make char methods const | YenForYang | -3/+6 |
| 2021-02-23 | Convert core/num/mod.rs to intra-doc links | Joshua Nelson | -7/+4 |
| 2021-02-14 | Move const def nearer usage. | Giles Cope | -3/+3 |
| 2021-02-12 | Slightly more explicit | Giles Cope | -1/+9 |
| 2021-02-08 | Unify way to flip 6th bit. (Same assembly generated) | Giles Cope | -2/+3 |
| 2020-12-30 | Remove all doc_comment!{} hacks by using #[doc = expr] where needed. | Mara Bos | -23/+16 |
| 2020-11-09 | Rollup merge of #77640 - ethanboxx:int_error_matching_attempt_2, r=KodrAus | Dylan DPC | -9/+13 |
| 2020-11-05 | Correct unsigned equivalent of isize to be usize | Jacob Pratt | -3/+3 |
| 2020-10-26 | Apply suggested changes | Ethan Brierley | -4/+9 |
| 2020-10-06 | remove OnlySign in favour of InvalidDigit | Ethan Brierley | -4/+3 |
| 2020-10-06 | Bring char along with InvalidDigit | Ethan Brierley | -2/+2 |
| 2020-10-06 | Fill in things needed to stabilize int_error_matching | Ethan Brierley | -6/+6 |
| 2020-09-19 | Remove outdated ignored tidy comment | Lzu Tao | -2/+0 |
| 2020-09-19 | Move (u)int_impl macros to their own files | Lzu Tao | -4158/+5 |
| 2020-09-19 | Move error structs to new mod | Lzu Tao | -162/+23 |
| 2020-09-19 | Move Wrapping<T> definition to wrapping mod | Lzu Tao | -73/+3 |
| 2020-09-19 | Move NonZero* to its file | Lzu Tao | -176/+7 |
| 2020-09-19 | Add tracking issue number for int_bits_const. | Mara Bos | -2/+2 |
| 2020-09-19 | Add example/test to <int types>::BITS. | Mara Bos | -6/+26 |
| 2020-09-19 | Add `BITS` associated constant to all integer types. | Mara Bos | -0/+8 |