| Age | Commit message (Expand) | Author | Lines |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -1/+1 |
| 2018-12-02 | Update issue number of `shrink_to` methods to point the tracking issue | Hidehito Yabuuchi | -1/+1 |
| 2018-10-09 | Refactor macro comment and add resize with zeros example | mandeep | -2/+6 |
| 2018-10-05 | Add doc comments about safest way to initialize a vector of zeros | mandeep | -1/+3 |
| 2018-10-02 | Make spec_extend use for_each() | Nathan West | -2/+2 |
| 2018-09-23 | Make the `Vec::dedup` method use `slice::partition_dedup` internally | Clément Renault | -84/+6 |
| 2018-09-23 | Introduce the partition_dedup/by/by_key methods for slices | Clément Renault | -5/+5 |
| 2018-09-16 | use mem::zeroed to make up ZST values | Ralf Jung | -4/+4 |
| 2018-08-29 | fix some uses of pointer intrinsics with invalid pointers | Ralf Jung | -6/+4 |
| 2018-08-20 | Replace usages of ptr::offset with ptr::{add,sub}. | Corey Farwell | -16/+16 |
| 2018-07-31 | Use SetLenOnDrop in Vec::truncate() | Laurentiu Nicola | -6/+17 |
| 2018-07-09 | Removed a single trailing space. Oops. | Orson Peters | -1/+1 |
| 2018-07-09 | Reimplemented Vec's swap_remove to not rely on pop. | Orson Peters | -4/+6 |
| 2018-07-09 | Performance improvement of Vec's swap_remove. | Orson Peters | -3/+7 |
| 2018-06-29 | Move core::alloc::CollectionAllocErr to alloc::collections | Simon Sapin | -1/+1 |
| 2018-06-19 | Add message to `rustc_on_unimplemented` attributes in core | Esteban Küber | -2/+8 |
| 2018-05-24 | stabilize RangeBounds collections_range #30877 | Cory Sherman | -2/+2 |
| 2018-05-21 | Auto merge of #50739 - gnzlbg:vec_reserve, r=sfackler | bors | -2/+2 |
| 2018-05-17 | Switch to 1.26 bootstrap compiler | Mark Simulacrum | -3/+0 |
| 2018-05-17 | Rollup merge of #50170 - burtonageo:more_cow_from, r=alexcrichton | kennytm | -0/+7 |
| 2018-05-14 | Switch Vec from doubling size on growth to using RawVec's reserve | gnzlbg | -2/+2 |
| 2018-05-09 | std: Avoid `ptr::copy` if unnecessary in `vec::Drain` | Alex Crichton | -3/+5 |
| 2018-05-09 | Update features to 1.28.0 | George Burton | -1/+1 |
| 2018-04-29 | use const trick | Mark Mansi | -1/+1 |
| 2018-04-27 | Update the stable attributes to use the current nightly version number | George Burton | -1/+1 |
| 2018-04-26 | not insta-stable | Mark Mansi | -0/+1 |
| 2018-04-26 | make Vec::new const :P | Mark Mansi | -1/+1 |
| 2018-04-25 | Make Vec::new const | Mark Mansi | -1/+1 |
| 2018-04-22 | Implement From for more types on Cow | George Burton | -0/+7 |
| 2018-04-21 | Add some f32 and f64 inherent methods in libcore | Simon Sapin | -0/+1 |
| 2018-04-17 | Rollup merge of #49555 - nox:inline-into-boxed, r=alexcrichton | kennytm | -1/+3 |
| 2018-04-16 | Auto merge of #48945 - clarcharr:iter_exhaust, r=Kimundi | bors | -6/+3 |
| 2018-04-15 | Remove #[inline(always)] on Vec::into_boxed_slice | Anthony Ramine | -1/+0 |
| 2018-04-14 | Cleanup liballoc use statements | Mike Hommey | -1/+1 |
| 2018-04-12 | Auto merge of #49551 - scottmcm:deprecate-offset_to, r=KodrAus | bors | -3/+4 |
| 2018-04-08 | Remove inline on Vec::shrink_to_fit as asked by Alex | Anthony Ramine | -1/+0 |
| 2018-04-05 | Rollup merge of #49496 - glandium:master, r=sfackler | kennytm | -26/+55 |
| 2018-04-04 | Replace manual iter exhaust with for_each(drop). | Clar Charr | -6/+3 |
| 2018-04-04 | Rollup merge of #49559 - djc:resize-with, r=TimNN | kennytm | -7/+57 |
| 2018-04-03 | Introduce Vec::resize_with method (see #41758) | Dirkjan Ochtman | -7/+57 |
| 2018-04-03 | Remove all unstable placement features | Aidan Hobson Sayers | -75/+1 |
| 2018-04-02 | Add vec!['\0'; n] optimization, like vec![0; n] | Mike Hommey | -0/+2 |
| 2018-04-02 | Add vec![ptr::null{,_mut}(); n] optimization, like vec![0; n] | Mike Hommey | -26/+53 |
| 2018-04-01 | Inline most of the code paths for conversions with boxed slices | Anthony Ramine | -1/+5 |
| 2018-03-31 | Deprecate offset_to; switch core&alloc to using offset_from instead | Scott McMurray | -3/+4 |
| 2018-03-30 | Rollup merge of #49466 - glandium:master, r=rkruppe | kennytm | -2/+2 |
| 2018-03-29 | Move RangeArguments to {core::std}::ops and rename to RangeBounds | Simon Sapin | -4/+3 |
| 2018-03-29 | Move alloc::Bound to {core,std}::ops | Simon Sapin | -1/+1 |
| 2018-03-29 | Use f{32,64}::to_bits for is_zero test in vec::SpecFromElem | Mike Hommey | -2/+2 |
| 2018-03-28 | Rollup merge of #49452 - frewsxcv:frewsxcv-vec-cap-len, r=dtolnay | kennytm | -3/+4 |