| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-08-14 | libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;` | Patrick Walton | -2/+2 | |
| The old syntax will be removed after a snapshot. RFC #47. Issue #16461. | ||||
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -6/+6 | |
| [breaking-change] | ||||
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -5/+5 | |
| This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change] | ||||
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -1/+1 | |
| [breaking-change] | ||||
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -1/+1 | |
| 2014-04-14 | Use new attribute syntax in python files in src/etc too (#13478) | Manish Goregaokar | -1/+1 | |
| 2014-01-22 | Add some tests for the exponential notation | SiegeLord | -0/+34 | |
