| Age | Commit message (Expand) | Author | Lines |
| 2015-06-27 | std: Avoid missing fns on i686-pc-windows-msvc | Alex Crichton | -21/+74 |
| 2015-06-17 | std: Split the `std_misc` feature | Alex Crichton | -24/+23 |
| 2015-06-01 | Document behavior of {f32,f64}::{min,max} on NaN | Matt Brubeck | -0/+8 |
| 2015-05-27 | Remove mentions of int / uint from the isize / usize docs | Jake Goulding | -8/+0 |
| 2015-05-12 | Scale back changes made | Alex Crichton | -34/+17 |
| 2015-05-12 | Very hacky MSVC hacks. | Ricky Taylor | -4/+31 |
| 2015-05-01 | std: Don't use a wrapper for the float error type | Alex Crichton | -34/+5 |
| 2015-04-21 | std: Bring back f32::from_str_radix as an unstable API | Alex Crichton | -761/+284 |
| 2015-04-21 | std: Remove deprecated/unstable num functionality | Alex Crichton | -2480/+10 |
| 2015-04-21 | Model lexer: Fix remaining issues | Piotr Czarnecki | -2/+0 |
| 2015-04-14 | rollup merge of #24377: apasel422/docs | Alex Crichton | -30/+30 |
| 2015-04-14 | test: Fixup many library unit tests | Alex Crichton | -14/+14 |
| 2015-04-13 | pluralize doc comment verbs and add missing periods | Andrew Paseltiner | -30/+30 |
| 2015-04-07 | std: Deny most warnings in doctests | Alex Crichton | -24/+2 |
| 2015-04-01 | Fallout in public-facing and semi-public-facing libs | Niko Matsakis | -3/+3 |
| 2015-03-31 | Stabilize std::num | Aaron Turon | -964/+408 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -68/+68 |
| 2015-03-23 | Add #![feature] attributes to doctests | Brian Anderson | -0/+125 |
| 2015-03-20 | std: Remove old_io/old_path from the prelude | Alex Crichton | -2/+2 |
| 2015-03-20 | Rollup merge of #22631 - aepsil0n:issue-22098, r=aturon | Manish Goregaokar | -9/+9 |
| 2015-03-19 | Allow Float::ldexp to be called as a method | Eduard Bopp | -9/+9 |
| 2015-03-18 | Register new snapshots | Alex Crichton | -23/+0 |
| 2015-03-16 | impl f{32,64} | Jorge Aparicio | -0/+2469 |
| 2015-03-16 | impl {i,u}{8,16,32,64,size} | Jorge Aparicio | -0/+3 |
| 2015-03-16 | impl<T> [T] | Jorge Aparicio | -0/+1 |
| 2015-03-16 | impl str | Jorge Aparicio | -0/+1 |
| 2015-03-16 | impl char | Jorge Aparicio | -0/+3 |
| 2015-03-08 | Auto merge of #22984 - carols10cents:tests-for-float, r=huonw | bors | -345/+925 |
| 2015-03-07 | Use assert_eq! rather than assert! | Ryan Prichard | -1/+1 |
| 2015-03-05 | Removing unnecessary pub from a test function | Carol Nichols | -2/+2 |
| 2015-03-05 | Add tests to stable f32 and f64 methods that didn't have any | Carol Nichols | -0/+580 |
| 2015-03-05 | Rearrange tests to be in the same order as implementation | Carol Nichols | -345/+345 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -31/+31 |
| 2015-03-03 | Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddyb | bors | -12/+14 |
| 2015-03-03 | Rollup merge of #22876 - Florob:const, r=nikomatsakis | Manish Goregaokar | -2/+2 |
| 2015-03-03 | Accommodate arith-overflow in `core::num`, `std::num`, `coretest::num`. | Felix S. Klock II | -12/+13 |
| 2015-03-03 | Add `core::num::wrapping` and fix overflow errors. | James Miller | -0/+1 |
| 2015-03-02 | core: Audit num module for int/uint | Brian Anderson | -2/+2 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -2/+2 |
| 2015-03-01 | Make Int::pow() take exp as u32 instead usize | Guillaume Gomez | -1/+1 |
| 2015-02-23 | Rollup merge of #22658 - glacjay:issue-22535, r=Gankro | Manish Goregaokar | -62/+66 |
| 2015-02-22 | shift int/uint tests around to avoid code repetition | GlacJAY | -62/+66 |
| 2015-02-20 | make int/uint modules just re-exports | Alexis | -149/+105 |
| 2015-02-18 | Convert required suffixes into a use of `as`. | Niko Matsakis | -39/+39 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -16/+16 |
| 2015-02-16 | Document std::num::Float with examples | mdinger | -42/+777 |
| 2015-02-15 | Rollup merge of #22339 - petrochenkov:int, r=huonw | Manish Goregaokar | -21/+21 |
| 2015-02-15 | Fix the fallout | Vadim Petrochenkov | -21/+21 |
| 2015-02-13 | Remove `_VALUE` from the float extremes constants. | Huon Wilson | -0/+2 |
| 2015-02-11 | Auto merge of #22076 - carols10cents:exp2-calling-exp, r=huonw | bors | -2/+56 |