| Age | Commit message (Expand) | Author | Lines |
| 2013-07-27 | cleanup .chain and .chain_err + fixing other files | maikklein | -16/+10 |
| 2013-07-24 | Change 'print(fmt!(...))' to printf!/printfln! in src/lib* | Birunthan Mohanathas | -3/+2 |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -14/+14 |
| 2013-07-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -71/+68 |
| 2013-07-18 | Silence various warnings in bootstrap build. | Felix S. Klock II | -7/+0 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -5/+6 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -307/+287 |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -23/+22 |
| 2013-07-17 | Clean-up tests after debug!/std-macros change. | Huon Wilson | -31/+57 |
| 2013-07-16 | syntax: make a macros-injection pass; conditionally define debug! to a noop b... | Huon Wilson | -0/+2 |
| 2013-07-09 | auto merge of #7117 : jensnockert/rust/freestanding, r=cmr | bors | -1/+2 |
| 2013-07-08 | Bump version numbers to 0.8-pre | Brian Anderson | -1/+1 |
| 2013-07-08 | Replaces the free-standing functions in f32, &c. | Jens Nockert | -1/+2 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -2/+2 |
| 2013-07-07 | Fix rustdoc and rusti | James Miller | -6/+5 |
| 2013-07-04 | Remove standalone comparison functions in vec, make the trait impls better. | Huon Wilson | -8/+5 |
| 2013-07-04 | Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterat... | Huon Wilson | -125/+58 |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -3/+3 |
| 2013-06-30 | auto merge of #7487 : huonw/rust/vec-kill, r=cmr | bors | -35/+31 |
| 2013-06-30 | Bump version from 0.7-pre to 0.7 | Brian Anderson | -1/+1 |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -35/+31 |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -88/+42 |
| 2013-06-28 | librustc: Remove the broken overloaded assign-ops from the language. | Patrick Walton | -6/+6 |
| 2013-06-28 | librustc: Change "Owned" to "Send" everywhere | Patrick Walton | -2/+2 |
| 2013-06-28 | librustc: Rename Const to Freeze | Patrick Walton | -2/+2 |
| 2013-06-25 | Change finalize -> drop. | Luqman Aden | -1/+1 |
| 2013-06-25 | Rename all files with the 'rc' extension | Alex Crichton | -0/+0 |
| 2013-06-23 | Support foreign 'static mut' variables as well | Alex Crichton | -1/+1 |
| 2013-06-23 | Add 'static mut' items to the language | Alex Crichton | -2/+2 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -8/+9 |
| 2013-06-22 | Merge pull request #7270 from thestinger/doc | Daniel Micay | -6/+6 |
| 2013-06-21 | replace vec::find with the IteratorUtil method | Daniel Micay | -10/+9 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -5/+6 |
| 2013-06-21 | Show defaults in rustdoc usage message | Ralph Bodenner | -6/+6 |
| 2013-06-16 | Do not strip leading whitespace when parsing doc comments. | SiegeLord | -2/+2 |
| 2013-06-16 | remove unused imports | Huon Wilson | -4/+0 |
| 2013-06-16 | std: test-fixes, remove warnings, syntax highlighting for code examples. | Huon Wilson | -18/+3 |
| 2013-06-16 | std: convert str::{map,levdistance,subslice_offset} to methods. | Huon Wilson | -38/+31 |
| 2013-06-15 | auto merge of #7130 : huonw/rust/rustdoc-highlight, r=thestinger | bors | -15/+13 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -4/+0 |
| 2013-06-15 | rustdoc: add syntax highlighting to item signatures. | Huon Wilson | -15/+13 |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -3/+3 |
| 2013-06-13 | rustdoc: fix tests for @~str -> @str change. | Huon Wilson | -33/+33 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -12/+12 |
| 2013-06-12 | Silence some warnings. | Huon Wilson | -5/+0 |
| 2013-06-12 | std: convert str::replace to a method. | Huon Wilson | -21/+21 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -1/+1 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -3/+3 |
| 2013-06-11 | std: replace str::is_{alphanumeric,whitespace} with the methods. | Huon Wilson | -4/+4 |
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -2/+2 |