| Age | Commit message (Expand) | Author | Lines |
| 2017-05-20 | Correct some stability versions | Oliver Middleton | -45/+45 |
| 2017-05-12 | Remove some unused macros from the rust codebase | est31 | -7/+0 |
| 2017-04-29 | Update stage0 bootstrap compiler | Alex Crichton | -72/+0 |
| 2017-04-29 | Simplify `checked_next_power_of_two` function | Irfan Hudda | -6/+1 |
| 2017-04-29 | Add comment about overflow behavior for next_power_of_two | Irfan Hudda | -0/+3 |
| 2017-04-28 | Add helper functions for `next_power_of_two` and `checked_next_power_of_two` | Irfan Hudda | -10/+14 |
| 2017-04-20 | Remove float_extras | Josh Stone | -51/+0 |
| 2017-04-20 | Remove num::{Zero,One} | Josh Stone | -72/+0 |
| 2017-04-20 | remove redundant wrapping_sub | Irfan Hudda | -1/+1 |
| 2017-04-19 | next_power_of_two panic on overflow | Irfan Hudda | -2/+8 |
| 2017-04-18 | Improve documentation of next_power_of_two | Irfan Hudda | -1/+3 |
| 2017-04-03 | Move libXtest into libX/tests | Stjepan Glavina | -1/+1 |
| 2017-03-22 | Various fixes to wording consistency in the docs | Stjepan Glavina | -4/+4 |
| 2017-03-19 | Rollup merge of #40521 - TimNN:panic-free-shift, r=alexcrichton | Corey Farwell | -18/+99 |
| 2017-03-19 | Rollup merge of #40281 - jimmycuadra:try-from-from-str, r=aturon | Corey Farwell | -3/+3 |
| 2017-03-18 | add inline attributes to stage 0 methods | Tim Neumann | -0/+4 |
| 2017-03-15 | Rename TryFrom's associated type and implement str::parse using TryFrom. | Jimmy Cuadra | -3/+3 |
| 2017-03-15 | make shift builtins panic-free with new unchecked_sh* intrinsics | Tim Neumann | -18/+95 |
| 2017-03-13 | Remove function invokation parens from documentation links. | Corey Farwell | -5/+5 |
| 2017-02-04 | Fix TryFrom for i128/u128 | Oliver Middleton | -4/+4 |
| 2017-02-03 | Bump version, upgrade bootstrap | Alex Crichton | -75/+3 |
| 2016-12-30 | Fix rebase fallout | est31 | -0/+21 |
| 2016-12-30 | Such large. Very 128. Much bits. | Simonas Kazlauskas | -12/+98 |
| 2016-10-12 | run rustfmt on libcore/num folder | Srinivas Reddy Thatiparthy | -6/+8 |
| 2016-10-07 | rewrite checked_{div,rem} to no contain any reference to panics | Jorge Aparicio | -8/+6 |
| 2016-10-04 | Rollup merge of #36902 - ollie27:stab_impls, r=alexcrichton | Manish Goregaokar | -3/+3 |
| 2016-10-03 | std: Stabilize and deprecate APIs for 1.13 | Alex Crichton | -9/+3 |
| 2016-10-01 | std: Correct stability attributes for some implementations | Oliver Middleton | -3/+3 |
| 2016-09-22 | Rollup merge of #36423 - GuillaumeGomez:eq_impl, r=pnkfelix | Jonathan Turner | -3/+3 |
| 2016-09-19 | Auto merge of #34942 - porglezomp:master, r=sfackler | bors | -15/+11 |
| 2016-09-18 | Add missing Eq implementations | Guillaume Gomez | -3/+3 |
| 2016-08-24 | Use `#[prelude_import]` in `libcore`. | Jeffrey Seyfried | -8/+2 |
| 2016-08-06 | Fix overflow checking in unsigned pow() | Caleb Jones | -15/+11 |
| 2016-07-28 | Add non-panicking abs() functions to all signed integer types. | Jethro Beekman | -0/+84 |
| 2016-07-15 | Improve float number example | Guillaume Gomez | -1/+1 |
| 2016-07-13 | Add examples for FpCategory | ggomez | -5/+24 |
| 2016-07-08 | Improve primitive integers documentation | Guillaume Gomez | -0/+32 |
| 2016-07-06 | Rollup merge of #34277 - ollie27:docs_num, r=steveklabnik | Steve Klabnik | -1/+0 |
| 2016-07-03 | std: Stabilize APIs for the 1.11.0 release | Alex Crichton | -11/+37 |
| 2016-06-14 | Add/improve num const docs | Oliver Middleton | -1/+0 |
| 2016-06-09 | Implement Binary, Octal, LowerHex and UpperHex for Wrapping<T> | Oliver Middleton | -0/+28 |
| 2016-06-05 | core: mark relevant functions with #[rustc_inherit_overflow_checks]. | Eduard Burtescu | -3/+3 |
| 2016-05-19 | Support 16-bit pointers as well as i/usize | Jake Goulding | -0/+21 |
| 2016-05-08 | Rollup merge of #33426 - sfackler:try-from, r=aturon | Manish Goregaokar | -1/+94 |
| 2016-05-07 | Implement RFC 1542 | Steven Fackler | -1/+94 |
| 2016-05-05 | Add an example to Wrapping's documentation. | Philipp Matthias Schaefer | -0/+11 |
| 2016-04-17 | Rollup merge of #33023 - tbu-:pr_wrapping_traits, r=alexcrichton | Manish Goregaokar | -1/+15 |
| 2016-04-16 | Implement `Display` and `Hash` for `std::num::Wrapping` | Tobias Bucher | -1/+15 |
| 2016-04-12 | Remove unused trait imports | Seo Sanghyeon | -1/+1 |
| 2016-04-10 | Match signed/unsigned integer type docs | jethrogb | -41/+53 |