| Age | Commit message (Expand) | Author | Lines |
| 2020-02-08 | Make `num::NonZeroX::new` an unstable `const fn` | Dylan MacKenzie | -1/+2 |
| 2020-02-04 | Use consistent feature naming | Dylan MacKenzie | -45/+45 |
| 2020-02-04 | Make saturating arithmetic using intrinsics `const` | Dylan MacKenzie | -2/+4 |
| 2020-02-04 | Make checked division `const` | Dylan MacKenzie | -4/+8 |
| 2020-02-04 | Make wrapping arithmetic `const` | Dylan MacKenzie | -4/+8 |
| 2020-02-04 | Make `saturating_mul` a `const fn` | Dylan MacKenzie | -6/+12 |
| 2020-02-04 | Make overflowing arithmetic `const` | Dylan MacKenzie | -4/+8 |
| 2020-02-04 | Make checked arithmetic besides division `const` | Dylan MacKenzie | -13/+26 |
| 2020-02-04 | Make euclidean division `const` | Dylan MacKenzie | -16/+32 |
| 2020-01-30 | Auto merge of #68325 - faern:move-numeric-consts-to-associated-consts-step1, ... | bors | -23/+51 |
| 2020-01-29 | Document `From` implementation for NonZero nums | LeSeulArtichaut | -2/+6 |
| 2020-01-23 | Unlock assoc_int_consts in documentation examples using it | Linus Färnstrand | -0/+4 |
| 2020-01-23 | Add MIN/MAX associated constants to the integer types | Linus Färnstrand | -23/+47 |
| 2020-01-15 | Mark leading_trailing_ones with tracking issue 57969 | Thom Chiovoloni | -4/+4 |
| 2020-01-12 | Add {leading,trailing}_ones to primitive int types | Thom Chiovoloni | -0/+83 |
| 2020-01-09 | Rollup merge of #67966 - popzxc:core-std-matches, r=Centril | Mazdak Farrokhzad | -40/+10 |
| 2020-01-09 | Rollup merge of #67884 - anp:allow-unused-const-attr, r=oli-obk | Mazdak Farrokhzad | -0/+3 |
| 2020-01-08 | Use matches macro in libcore and libstd | Igor Aleksanov | -40/+10 |
| 2020-01-04 | Fix incremental builds of core by allowing unused attribute. | Adam Perry | -0/+3 |
| 2020-01-05 | Re-add comment about behaviour of inline. | jumbatm | -0/+3 |
| 2020-01-04 | Also remove const-hack for abs | jumbatm | -18/+6 |
| 2019-12-27 | Clean up const-hack from #58044 | jumbatm | -1/+6 |
| 2019-12-27 | Clean up const-hack from #61635 | jumbatm | -1/+5 |
| 2019-12-27 | Clean up const-hack from #63786 | jumbatm | -10/+6 |
| 2019-12-21 | Require issue = "none" over issue = "0" in unstable attributes | Ross MacArthur | -2/+2 |
| 2019-12-18 | Propagate cfg bootstrap | Mark Rousskov | -325/+77 |
| 2019-12-15 | use Self alias in place of macros | Lzu Tao | -2/+2 |
| 2019-12-15 | Rollup merge of #67305 - kappa:patch-1, r=jonas-schievink | Mazdak Farrokhzad | -1/+1 |
| 2019-12-14 | Doc typo | Alex Kapranoff | -1/+1 |
| 2019-12-14 | Auto merge of #67224 - nikomatsakis:revert-stabilization-of-never-type, r=cen... | bors | -0/+11 |
| 2019-12-14 | Revert "Stabilize the `never_type`, written `!`." | Niko Matsakis | -1/+1 |
| 2019-12-14 | Revert "Redefine `core::convert::Infallible` as `!`." | Niko Matsakis | -0/+11 |
| 2019-12-13 | Require stable/unstable annotations for the constness of all stable functions... | Oliver Scherer | -17/+325 |
| 2019-12-08 | move from non zero impls to `libcore/convert/num.rs` | Peter | -495/+97 |
| 2019-12-06 | Move numeric `From` and `TryFrom` impls to `libcore/convert/num.rs` | Simon Sapin | -330/+1 |
| 2019-11-21 | Redefine `core::convert::Infallible` as `!`. | Mazdak Farrokhzad | -11/+1 |
| 2019-11-21 | Stabilize the `never_type`, written `!`. | Mazdak Farrokhzad | -1/+1 |
| 2019-11-12 | update version metadata | Peter | -35/+35 |
| 2019-11-11 | add NonZeroU16 -> NonZeroUsize and NonZeroI16 -> NonZeroIsize | Peter | -0/+2 |
| 2019-11-10 | remove irrelevant Safety section | Peter | -38/+34 |
| 2019-11-10 | From<NonZero*> impls for wider NonZero types | Peter | -0/+70 |
| 2019-11-08 | remove vestigial comments referring to defunct numeric trait hierarchy | Alexander Nye | -2/+0 |
| 2019-11-06 | Have tidy ensure that we document all `unsafe` blocks in libcore | Oliver Scherer | -2/+23 |
| 2019-10-21 | Rollup merge of #65092 - tspiteri:const-is-pow2, r=oli-obk | Mazdak Farrokhzad | -2/+2 |
| 2019-10-21 | improve readability of is_power_of_two | Trevor Spiteri | -1/+1 |
| 2019-10-17 | properly document panics in div_euclid and rem_euclid | Trevor Spiteri | -2/+10 |
| 2019-10-11 | improve performance of signed saturating_mul | Trevor Spiteri | -1/+1 |
| 2019-10-04 | make is_power_of_two a const function | Trevor Spiteri | -2/+2 |
| 2019-10-03 | Rollup merge of #64941 - lzutao:inline-max_min_value, r=nnethercote | Mazdak Farrokhzad | -4/+4 |
| 2019-10-01 | Add lower bound doctests for `saturating_{add,sub}` signed ints | Lzu Tao | -3/+6 |