| Age | Commit message (Expand) | Author | Lines |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -10/+10 |
| 2015-01-29 | remove unused imports | Jorge Aparicio | -2/+2 |
| 2015-01-29 | fix inference fallout | Jorge Aparicio | -15/+15 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -22/+22 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -116/+116 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -44/+44 |
| 2015-01-29 | Auto merge of #21680 - japaric:slice, r=alexcrichton | bors | -51/+51 |
| 2015-01-28 | Merge remote-tracking branch 'origin/master' into rollup | Manish Goregaokar | -645/+756 |
| 2015-01-28 | Move return type an associated type of the `Fn*` traits. Mostly this involves... | Niko Matsakis | -1/+3 |
| 2015-01-27 | Rollup merge of #21625 - carols10cents:sliceext-examples, r=alexcrichton | Manish Goregaokar | -4/+105 |
| 2015-01-27 | cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` calls | Jorge Aparicio | -51/+51 |
| 2015-01-26 | Correct a typo in a deprecation warning | Carol Nichols | -1/+1 |
| 2015-01-26 | Add examples to documentation of SliceExt methods | Carol Nichols | -3/+104 |
| 2015-01-26 | Merge remote-tracking branch 'rust-lang/master' | Brian Anderson | -1/+17 |
| 2015-01-26 | add split_off method to vec with tests | Jeff Belgum | -2/+46 |
| 2015-01-26 | Auto merge of #21401 - kballard:optimize-shrink-to-fit, r=nikomatsakis | bors | -1/+17 |
| 2015-01-25 | Merge remote-tracking branch 'rust-lang/master' | Brian Anderson | -175/+155 |
| 2015-01-23 | grandfathered -> rust1 | Brian Anderson | -490/+490 |
| 2015-01-23 | Deprecated attributes don't take 'feature' names and are paired with stable/u... | Brian Anderson | -1/+3 |
| 2015-01-23 | Set unstable feature names appropriately | Brian Anderson | -137/+140 |
| 2015-01-22 | Rollup merge of #21484 - steveklabnik:connect_docs, r=alexcrichton | Steve Klabnik | -2/+21 |
| 2015-01-22 | Put #[staged_api] behind the 'staged_api' gate | Brian Anderson | -0/+1 |
| 2015-01-21 | Remove 'since' from unstable attributes | Brian Anderson | -136/+136 |
| 2015-01-21 | Tie stability attributes to feature gates | Brian Anderson | -1/+1 |
| 2015-01-21 | Add 'feature' and 'since' to stability attributes | Brian Anderson | -627/+720 |
| 2015-01-21 | add doc examples for connect/concat | Steve Klabnik | -2/+21 |
| 2015-01-21 | rollup merge of #21258: aturon/stab-3-index | Alex Crichton | -119/+66 |
| 2015-01-21 | rollup merge of #21457: alexcrichton/issue-21436 | Alex Crichton | -47/+48 |
| 2015-01-21 | rollup merge of #21437: FlaPer87/snapshot | Alex Crichton | -3/+0 |
| 2015-01-21 | rollup merge of #21396: japaric/no-parens-in-range | Alex Crichton | -3/+3 |
| 2015-01-21 | rollup merge of #21354: eddyb/vec-ufcs | Alex Crichton | -8/+8 |
| 2015-01-21 | rollup merge of #21053: apasel422/exact | Alex Crichton | -0/+7 |
| 2015-01-21 | Fallout from stabilization. | Aaron Turon | -23/+28 |
| 2015-01-21 | Deprecate slicing methods in favor of notation | Aaron Turon | -94/+28 |
| 2015-01-21 | Stabilize Index traits and most range notation | Aaron Turon | -2/+10 |
| 2015-01-20 | std: Rename Show/String to Debug/Display | Alex Crichton | -47/+48 |
| 2015-01-20 | implement `ExactSizeIterator` for `slice::{Chunks,ChunksMut}` | Andrew Paseltiner | -0/+7 |
| 2015-01-20 | Register snapshot for 9006c3c | Flavio Percoco | -3/+0 |
| 2015-01-21 | Rollup merge of #21388 - aochagavia:collections, r=Gankro | Barosl LEE | -11/+71 |
| 2015-01-21 | Rollup merge of #21375 - petrochenkov:ssbsl, r=alexcrichton | Barosl LEE | -13/+13 |
| 2015-01-21 | Rollup merge of #20998 - estsauver:20984, r=steveklabnik | Barosl LEE | -4/+4 |
| 2015-01-19 | Don't reallocate when capacity is already equal to length | Kevin Ballard | -1/+1 |
| 2015-01-19 | Add benchmark for String::shrink_to_fit() | Kevin Ballard | -0/+16 |
| 2015-01-19 | remove unnecessary parentheses from range notation | Jorge Aparicio | -3/+3 |
| 2015-01-19 | Implement range and range_mut for BTree | Piotr Czarnecki | -194/+604 |
| 2015-01-19 | Add test for #21328 | Adolfo Ochagavía | -1/+13 |
| 2015-01-19 | Add a Drain iterator to VecMap | Adolfo Ochagavía | -6/+55 |
| 2015-01-19 | Make VecMap::into_iter consume the VecMap | Adolfo Ochagavía | -4/+3 |
| 2015-01-18 | Improve the vec![...] macro with UFCS. | Eduard Burtescu | -8/+8 |
| 2015-01-18 | auto merge of #21288 : brson/rust/snaps, r=alexcrichton | bors | -29/+1 |