| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2015-08-12 | Remove all unstable deprecated functionality | Alex Crichton | -326/+15 |
| 2015-08-11 | Register new snapshots | Alex Crichton | -3/+0 |
| 2015-08-09 | Replace many uses of `mem::transmute` with more specific functions | Tobias Bucher | -1/+1 |
| 2015-08-03 | syntax: Implement #![no_core] | Alex Crichton | -1/+3 |
| 2015-07-29 | Rollup merge of #27375 - niconii:vec-docs, r=Gankro | Steve Klabnik | -1/+8 |
| 2015-07-29 | Rollup merge of #27326 - steveklabnik:doc_show_use, r=Gankro | Steve Klabnik | -6/+11 |
| 2015-07-28 | Make docs for Vec::push() use vec! with square brackets | Nicolette Verlinden | -1/+1 |
| 2015-07-28 | Mention vec![x; len] syntax in Vec docs | Nicolette Verlinden | -0/+7 |
| 2015-07-27 | std: Deprecate a number of unstable features | Alex Crichton | -0/+4 |
| 2015-07-27 | Show appropriate feature flags in docs | Steve Klabnik | -6/+11 |
| 2015-07-17 | Auto merge of #26955 - Gankro:raw-vec, r=bluss,alexcrichton | bors | -246/+44 |
| 2015-07-17 | Add RawVec to unify raw Vecish code | Alexis Beingessner | -246/+44 |
| 2015-07-17 | Update vec.rs | Wei-Ming Yang | -0/+1 |
| 2015-07-08 | Improve Vec::resize so that it can be used in Read::read_to_end | Ulrik Sverdrup | -21/+28 |
| 2015-07-05 | Auto merge of #26464 - Gankro:send, r=alexcrichton | bors | -3/+0 |
| 2015-07-02 | Add more description for from_raw_parts's unsafety | Steve Klabnik | -1/+11 |
| 2015-06-26 | Auto merge of #25646 - huonw:align, r=alexcrichton | bors | -7/+7 |
| 2015-06-24 | Avoid overflow in Vec::from_iter | Steven Fackler | -2/+3 |
| 2015-06-24 | Make `align_of` behave like `min_align_of`. | Huon Wilson | -7/+7 |
| 2015-06-20 | remove redundant Send and Sync impl from Vec | Alexis Beingessner | -3/+0 |
| 2015-06-17 | More test fixes and fallout of stability changes | Alex Crichton | -0/+2 |
| 2015-06-17 | std: Deprecate Vec::from_raw_buf | Alex Crichton | -0/+2 |
| 2015-06-17 | Fallout in tests and docs from feature renamings | Alex Crichton | -4/+4 |
| 2015-06-17 | collections: Split the `collections` feature | Alex Crichton | -11/+22 |
| 2015-06-17 | Auto merge of #22681 - mzabaluev:extend-faster, r=huonw | bors | -39/+39 |
| 2015-06-11 | Auto merge of #26190 - Veedrac:no-iter, r=alexcrichton | bors | -2/+2 |
| 2015-06-11 | Conver reborrows to .iter() calls where appropriate | Joshua Landau | -1/+1 |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -1/+1 |
| 2015-06-10 | Rollup merge of #26164 - tafia:early-dedup, r=Gankro | Manish Goregaokar | -1/+1 |