| Age | Commit message (Expand) | Author | Lines |
| 2016-01-16 | std: Stabilize APIs for the 1.7 release | Alex Crichton | -7/+7 |
| 2016-01-14 | UTF-8 validation: Add missing if conditional for short input | Ulrik Sverdrup | -13/+16 |
| 2016-01-12 | Add fast path for ASCII in UTF-8 validation | Ulrik Sverdrup | -27/+57 |
| 2015-12-11 | Add missing links to str docs | Ori Avtalion | -14/+42 |
| 2015-12-05 | std: Stabilize APIs for the 1.6 release | Alex Crichton | -49/+67 |
| 2015-11-23 | Auto merge of #29952 - petrochenkov:depr, r=brson | bors | -1/+1 |
| 2015-11-23 | Mark slice_error_fail as a cold path | Manish Goregaokar | -0/+1 |
| 2015-11-20 | Rename #[deprecated] to #[rustc_deprecated] | Vadim Petrochenkov | -1/+1 |
| 2015-11-20 | Add information about str::parse() in FromStr docs | Devon Hollowood | -0/+7 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+3 |
| 2015-11-12 | libcore: deny warnings in doctests | Kevin Butler | -2/+0 |
| 2015-11-06 | Remove stability annotations from trait impl items | Vadim Petrochenkov | -1/+0 |
| 2015-10-25 | Auto merge of #29254 - alexcrichton:stabilize-1.5, r=brson | bors | -5/+2 |
| 2015-10-25 | std: Stabilize library APIs for 1.5 | Alex Crichton | -5/+2 |
| 2015-10-23 | Unsafety -> Safety in doc headings | Steve Klabnik | -1/+1 |
| 2015-10-13 | Correct spelling in docs | Andrew Paseltiner | -1/+1 |
| 2015-10-10 | Trivial typo fix: from_utrf8 should be from_utf8 | Andrew Chin | -1/+1 |
| 2015-10-08 | typos: fix a grabbag of typos all over the place | Cristi Cobzarenco | -1/+1 |
| 2015-10-02 | Improve documentation for the from_utf8 family | Steve Klabnik | -5/+119 |
| 2015-09-30 | Add some docs for FromString::from_str | Steve Klabnik | -0/+15 |
| 2015-09-26 | Auto merge of #28632 - alexcrichton:update-match-indices, r=Kimundi | bors | -5/+9 |
| 2015-09-25 | std: Update MatchIndices to return a subslice | Alex Crichton | -5/+9 |
| 2015-09-24 | Utf8Error::valid_up_to: make documented semantics more precise/useful | Simon Sapin | -2/+2 |
| 2015-09-13 | Auto merge of #28339 - alexcrichton:stabilize-1.4, r=aturon | bors | -2/+2 |
| 2015-09-11 | std: Stabilize/deprecate features for 1.4 | Alex Crichton | -2/+2 |
| 2015-09-10 | Optimize string comparison by using memcmp | Erick Tryzelaar | -15/+20 |
| 2015-09-08 | some more clippy-based improvements | Andre Bogus | -3/+3 |
| 2015-09-04 | Auto merge of #28119 - nagisa:bytesderef, r=alexcrichton | bors | -30/+3 |
| 2015-09-03 | std: Account for CRLF in {str, BufRead}::lines | Alex Crichton | -4/+10 |
| 2015-09-03 | Elide lifetimes in libcore | Manish Goregaokar | -11/+11 |
| 2015-08-31 | Change explicit BytesDeref impl into Cloned iterator | Simonas Kazlauskas | -30/+3 |
| 2015-08-31 | Auto merge of #28101 - ijks:24214-str-bytes, r=alexcrichton | bors | -0/+15 |
| 2015-08-30 | Add overrides to iterator methods for `str::Bytes` | Daan Rijks | -0/+15 |
| 2015-08-28 | Add .as_str() to str::Chars and str::CharIndices. See #27775. | Simon Sapin | -0/+24 |
| 2015-08-18 | Auto merge of #27474 - bluss:twoway-reverse, r=brson | bors | -64/+193 |
| 2015-08-16 | StrSearcher: Additional comments and small code moves | Ulrik Sverdrup | -19/+27 |
| 2015-08-15 | core: Fill out issues for unstable features | Alex Crichton | -6/+11 |
| 2015-08-12 | Fallout in libs -- misc missing bounds uncovered by WF checks. | Niko Matsakis | -1/+2 |
| 2015-08-09 | Make `str::as_bytes_mut` private | Tobias Bucher | -6/+0 |
| 2015-08-09 | Replace many uses of `mem::transmute` with more specific functions | Tobias Bucher | -8/+14 |
| 2015-08-07 | StrSearcher: Improve inner loop in TwoWaySearcher::next, next_back | Ulrik Sverdrup | -10/+22 |
| 2015-08-03 | syntax: Implement #![no_core] | Alex Crichton | -1/+2 |
| 2015-08-02 | StrSearcher: Implement the full two way algorithm in reverse for rfind | Ulrik Sverdrup | -49/+158 |
| 2015-07-29 | std: Remove the curious inner module | Alex Crichton | -1/+1 |
| 2015-07-21 | Inline eq_slice_() into eq_slice() | Björn Steinbrink | -12/+3 |
| 2015-07-21 | Auto merge of #27168 - brson:stdprim, r=steveklabnik | bors | -1/+0 |
| 2015-07-20 | std: Create separate docs for the primitives | Brian Anderson | -1/+0 |
| 2015-07-18 | Fix doc comment parsing in macros. | Lee Jeffery | -10/+10 |
| 2015-07-13 | Add str::split_at_mut | Simon Sapin | -0/+15 |
| 2015-07-13 | Implement IndexMut for String and str. | Simon Sapin | -0/+64 |