| Age | Commit message (Expand) | Author | Lines |
| 2015-04-21 | Remove references to `old_{path,io}` | Tamir Duberstein | -1/+1 |
| 2015-04-18 | Auto merge of #24428 - kwantam:deprecate_unicode_fns, r=alexcrichton | bors | -2/+2 |
| 2015-04-17 | Workaround deliberate overflowing negation in serialize::json. | Felix S. Klock II | -1/+1 |
| 2015-04-16 | deprecate Unicode functions that will be moved to crates.io | kwantam | -2/+2 |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-14 | test: Fixup many library unit tests | Alex Crichton | -3/+1 |
| 2015-04-01 | Fallout in public-facing and semi-public-facing libs | Niko Matsakis | -1/+1 |
| 2015-03-31 | rollup merge of #23879: seanmonstar/del-from-error | Alex Crichton | -2/+2 |
| 2015-03-31 | rollup merge of #23886: demelev/remove_as_slice_usage | Alex Crichton | -1/+1 |
| 2015-03-31 | Stabilize std::num | Aaron Turon | -0/+3 |
| 2015-03-30 | convert: remove FromError, use From<E> instead | Sean McArthur | -2/+2 |
| 2015-03-31 | replace deprecated as_slice() | Emeliov Dmitrii | -1/+1 |
| 2015-03-28 | Rollup merge of #23803 - richo:unused-braces, r=Manishearth | Manish Goregaokar | -1/+1 |
| 2015-03-28 | cleanup: Remove unused braces in use statements | Richo Healey | -1/+1 |
| 2015-03-27 | rollup merge of #23741: alexcrichton/remove-int-uint | Alex Crichton | -95/+95 |
| 2015-03-27 | rollup merge of #23738: alexcrichton/snapshots | Alex Crichton | -23/+0 |
| 2015-03-27 | Change the trivial cast lints to allow by default | Nick Cameron | -2/+0 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -98/+98 |
| 2015-03-26 | Register new snapshots | Alex Crichton | -23/+0 |
| 2015-03-25 | Change lint names to plurals | Nick Cameron | -2/+2 |
| 2015-03-25 | Add trivial cast lints. | Nick Cameron | -2/+8 |
| 2015-03-23 | Adjust Index/IndexMut impls. For generic collections, we take | Niko Matsakis | -0/+23 |
| 2015-03-20 | std: Remove old_io/old_path from the prelude | Alex Crichton | -0/+1 |
| 2015-03-18 | Register new snapshots | Alex Crichton | -2/+0 |
| 2015-03-16 | impl f{32,64} | Jorge Aparicio | -1/+1 |
| 2015-03-13 | Fallout of std::old_io deprecation | Alex Crichton | -13/+16 |
| 2015-03-09 | doc: Fix extraneous as_slice()'s in docstrings | Richo Healey | -1/+1 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -1/+1 |
| 2015-03-03 | Accommodate arith-overflow in serialize::json numeric parsing. | Felix S. Klock II | -2/+2 |
| 2015-02-26 | remove some compiler warnings | Tshepang Lekhonkhobe | -2/+0 |
| 2015-02-24 | Use arrays instead of vectors in tests | Vadim Petrochenkov | -5/+5 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -6/+6 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -6/+6 |
| 2015-02-18 | Convert required suffixes into a use of `as`. | Niko Matsakis | -11/+11 |
| 2015-02-14 | Rename `fmt::Writer` to `fmt::Write` | Chris Wong | -8/+8 |
| 2015-02-08 | Rename Show to Debug, String to Display | Alexander Korolkov | -2/+2 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -4/+4 |
| 2015-02-03 | Auto merge of #21613 - alfie:suffix-small, r=alexcrichton | bors | -22/+22 |
| 2015-02-02 | More deprecating of i/u suffixes | Alfie John | -22/+22 |
| 2015-02-02 | `for x in xs.into_iter()` -> `for x in xs` | Jorge Aparicio | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -7/+7 |
| 2015-01-30 | rollup merge of #21631: tbu-/isize_police | Alex Crichton | -2/+2 |
| 2015-01-30 | rollup merge of #21713: alexcrichton/second-pass-fmt | Alex Crichton | -2/+2 |
| 2015-01-30 | std: Stabilize the std::fmt module | Alex Crichton | -2/+2 |
| 2015-01-30 | std: Stabilize FromStr and parse | Alex Crichton | -4/+5 |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -2/+2 |
| 2015-01-29 | Auto merge of #21677 - japaric:no-range, r=alexcrichton | bors | -18/+18 |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -13/+13 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -3/+3 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -2/+2 |