| Age | Commit message (Expand) | Author | Lines |
| 2016-04-14 | Specialize `Extend` to `append` for `{LinkedList, Vec}` | Andrew Paseltiner | -0/+13 |
| 2016-03-28 | style: Use `iter` for IntoIterator parameter names | Kamal Marhubi | -4/+4 |
| 2016-03-12 | std: Clean out deprecated APIs | Alex Crichton | -30/+1 |
| 2016-03-06 | Auto merge of #30884 - durka:inclusive-ranges, r=aturon | bors | -0/+32 |
| 2016-03-02 | Use ptr::drop_in_place in Vec::truncate | Ulrik Sverdrup | -3/+4 |
| 2016-03-02 | Use ptr::drop_in_place in Vec::drop | Ulrik Sverdrup | -8/+3 |
| 2016-02-27 | add indexing with RangeInclusive in libcore and libcollections | Alex Burka | -0/+32 |
| 2016-02-24 | Add more explanation on vec type | Guillaume Gomez | -0/+43 |
| 2016-02-17 | Implement `Clone` for `std::vec::IntoIter` | Tobias Bucher | -1/+11 |
| 2016-02-16 | Clarify contiguous memory array structure of vectors in documentation | Dirk Gadsden | -3/+3 |
| 2016-02-12 | doc: skipping (obvious) details here is worth making this more nice to read | Tshepang Lekhonkhobe | -2/+2 |
| 2016-02-03 | Add `Cow::from` for `Vec` and slices | Tobias Bucher | -0/+14 |
| 2016-01-16 | std: Stabilize APIs for the 1.7 release | Alex Crichton | -6/+5 |
| 2015-12-18 | Auto merge of #30272 - tshepang:doc-drain, r=bluss | bors | -6/+11 |
| 2015-12-17 | doc: improve drain examples and remove secondary info from leading paragraph | Tshepang Lekhonkhobe | -6/+11 |
| 2015-12-17 | Remove unused imports | Jeffrey Seyfried | -1/+1 |
| 2015-12-09 | doc: these are just renames, so avoid duplication | Tshepang Lekhonkhobe | -15/+1 |
| 2015-12-05 | std: Stabilize APIs for the 1.6 release | Alex Crichton | -9/+45 |
| 2015-11-24 | rustfmt libcollections | Nick Cameron | -57/+71 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+6 |
| 2015-11-12 | libcollections: deny warnings in doctests | Kevin Butler | -0/+1 |
| 2015-11-08 | Fix outdated comment in Vec::from_iter | Stepan Koltsov | -2/+1 |
| 2015-11-06 | Auto merge of #29643 - petrochenkov:stability5, r=alexcrichton | bors | -1/+0 |
| 2015-11-06 | Remove stability annotations from trait impl items | Vadim Petrochenkov | -1/+0 |
| 2015-11-05 | vec: Remove old comment in Vec::drop | Ulrik Sverdrup | -4/+0 |
| 2015-10-30 | don't use drop_in_place as an intrinsic | Alexis Beingessner | -2/+2 |
| 2015-10-30 | Auto merge of #29458 - tshepang:better, r=alexcrichton | bors | -2/+3 |
| 2015-10-29 | doc: fix and expand explanation | Tshepang Lekhonkhobe | -2/+3 |
| 2015-10-28 | Update docstring for truncate | Cameron Sun | -2/+2 |
| 2015-10-25 | Auto merge of #29254 - alexcrichton:stabilize-1.5, r=brson | bors | -5/+1 |
| 2015-10-25 | std: Stabilize library APIs for 1.5 | Alex Crichton | -5/+1 |
| 2015-10-23 | Unsafety -> Safety in doc headings | Steve Klabnik | -1/+1 |
| 2015-10-20 | Add dropck unsafe escape hatch (UGEH) to vec::IntoIter. | Felix S. Klock II | -0/+1 |
| 2015-10-06 | Add RFC 1238's `unsafe_destructor_blind_to_params` (UGEH) where needed. | Felix S. Klock II | -0/+1 |
| 2015-10-01 | fixup wording | Alexis Beingessner | -1/+1 |
| 2015-10-01 | flesh out what Vec actually guarantees | Alexis Beingessner | -0/+75 |
| 2015-09-30 | Auto merge of #28731 - bluss:by-ref, r=alexcrichton | bors | -1/+1 |
| 2015-09-29 | Remove redundant uses of Iterator::by_ref() | Ulrik Sverdrup | -1/+1 |
| 2015-09-27 | Auto merge of #28689 - Manishearth:rollup, r=Manishearth | bors | -2/+0 |
| 2015-09-27 | Auto merge of #28663 - bluss:vec-as-mut, r=alexcrichton | bors | -0/+14 |
| 2015-09-26 | Remove unnecessary `#![feature]` attributes | Andrew Paseltiner | -2/+0 |
| 2015-09-25 | Add AsMut<Vec<T>> for Vec<T> | Ulrik Sverdrup | -0/+7 |
| 2015-09-25 | Implement AsMut for Vec | Ulrik Sverdrup | -0/+7 |
| 2015-09-24 | Optimize `Vec::clone_from` | Andrew Paseltiner | -8/+4 |
| 2015-09-20 | Add comment. | whitequark | -0/+2 |
| 2015-09-20 | Fix style. | whitequark | -3/+5 |
| 2015-09-20 | Do not drop_in_place elements of Vec<T> if T doesn't need dropping | whitequark | -3/+5 |
| 2015-09-11 | std: Stabilize/deprecate features for 1.4 | Alex Crichton | -8/+2 |
| 2015-09-03 | Use `null()`/`null_mut()` instead of `0 as *const T`/`0 as *mut T` | Vadim Petrochenkov | -1/+1 |
| 2015-08-15 | collections: Add issues for unstable features | Alex Crichton | -8/+15 |