| Age | Commit message (Expand) | Author | Lines |
| 2018-11-30 | Removed feature gate. | Alexander Regueiro | -4/+3 |
| 2018-11-30 | Add precise_pointer_size_matching feature | varkor | -0/+2 |
| 2018-11-30 | Stabilise exhaustive_integer_patterns | varkor | -2/+2 |
| 2018-11-30 | proc_macro: introduce a "bridge" between clients (proc macros) and servers (c... | Eduard-Mihai Burtescu | -2/+2 |
| 2018-11-27 | remove feature gate | Mark Mansi | -3/+0 |
| 2018-11-27 | move feature gate to accepted | Mark Mansi | -3/+2 |
| 2018-11-21 | Stabilize macro_literal_matcher | Dan Aloni | -6/+2 |
| 2018-11-21 | Stabilize `extern_crate_item_prelude` | Vadim Petrochenkov | -3/+2 |
| 2018-11-15 | Fix stability hole with `static _` | Oliver Scherer | -0/+1 |
| 2018-11-07 | Rollup merge of #55510 - bitshifter:repr-feature-gate-fix, r=petrochenkov | kennytm | -1/+1 |
| 2018-11-06 | Rollup merge of #55601 - petrochenkov:featissue, r=pnkfelix | kennytm | -19/+8 |
| 2018-11-03 | Added support for trait aliases as bounds. | Alexander Regueiro | -7/+10 |
| 2018-11-02 | Remove deprecated unstable `#[panic_implementation]` | Vadim Petrochenkov | -13/+2 |
| 2018-11-02 | Fix tracking issue numbers for some unstable features | Vadim Petrochenkov | -6/+6 |
| 2018-10-31 | Fix feature gate only being checked on first repr attr. | Cameron Hart | -1/+1 |
| 2018-10-27 | feature-gate lint reasons | Zack M. Davis | -0/+3 |
| 2018-10-24 | Feature gate extern prelude additions from `extern crate` items | Vadim Petrochenkov | -0/+3 |
| 2018-10-23 | Auto merge of #54778 - scottmcm:stabilize-ihle, r=pnkfelix | bors | -3/+5 |
| 2018-10-19 | Add a stub feature so we can still test E0705 | Scott McMurray | -0/+3 |
| 2018-10-19 | Stabilize impl_header_lifetime_elision in 2015 | Scott McMurray | -4/+3 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -1/+1 |
| 2018-10-14 | Support underscore as constant name | Donato Sciarra | -0/+10 |
| 2018-10-10 | Rollup merge of #54870 - flip1995:stabilize_tool_lints, r=Manishearth | Manish Goregaokar | -3/+2 |
| 2018-10-10 | Rollup merge of #54862 - Havvy:cfg_attr_multi, r=petrochenkov | Manish Goregaokar | -0/+3 |
| 2018-10-09 | Update feature-gate listing | flip1995 | -3/+2 |
| 2018-10-07 | cfg-attr-multi: Change issue number to actual tracking issue | Havvy (Ryan Scheel) | -1/+1 |
| 2018-10-07 | Auto merge of #54835 - oli-obk:mögen_konstante_funktionen_doch_bitte_endlich... | bors | -21/+3 |
| 2018-10-07 | cfg_attr_multi: Feature gate | Havvy (Ryan Scheel) | -0/+3 |
| 2018-10-05 | Auto merge of #54336 - petrochenkov:preuni, r=alexcrichton | bors | -4/+0 |
| 2018-10-05 | Stabilize min_const_fn feature gate | Oliver Scherer | -13/+2 |
| 2018-10-05 | Stabilize `min_const_fn` | Oliver Schneider | -8/+1 |
| 2018-10-05 | expansion: Remove restriction on use of macro attributes with test/bench | Vadim Petrochenkov | -4/+0 |
| 2018-10-02 | Merge the `proc_macro_` expansion feature gates into a single `proc_macro_hyg... | jeb | -4/+9 |
| 2018-10-01 | Extra proc macro gates are now at #54727 | Alex Crichton | -5/+5 |
| 2018-09-26 | Auto merge of #54497 - ralexstokes:stabilize_pattern_parentheses, r=nikomatsakis | bors | -7/+2 |
| 2018-09-25 | Auto merge of #53542 - alexreg:impl-trait-in-bindings, r=cramertj | bors | -2/+5 |
| 2018-09-25 | Auto merge of #53693 - scottmcm:marker-trait-attribute, r=nikomatsakis | bors | -0/+9 |
| 2018-09-25 | Handle impl trait in MIR type checked for assignments. | Matthew Jasper | -2/+5 |
| 2018-09-23 | Auto merge of #54325 - michaelwoerister:incr-thinlto-tests, r=alexcrichton | bors | -0/+6 |
| 2018-09-22 | stabilize pattern_parentheses feature | Alex Stokes | -7/+2 |
| 2018-09-22 | Stabilize crate_in_paths, extern_absolute_paths and extern_prelude on all edi... | Eduard-Mihai Burtescu | -14/+7 |
| 2018-09-19 | Parse, feature-gate, and validate the #[marker] attribute | Scott McMurray | -0/+9 |
| 2018-09-18 | incr.comp.: Allow for more fine-grained testing of CGU reuse and use it to te... | Michael Woerister | -0/+6 |
| 2018-09-18 | Auto merge of #54034 - pnkfelix:issue-15287-bind-by-move-pattern-guards, r=ni... | bors | -0/+6 |
| 2018-09-18 | Rollup merge of #54299 - snaedis:issue-54246, r=varkor | Guillaume Gomez | -7/+10 |
| 2018-09-17 | libsyntax: add optional help message for deprecated features | Alva Snædís | -6/+9 |
| 2018-09-17 | libsyntax: fix casing in error message | Alva Snædís | -1/+1 |
| 2018-09-17 | Add `feature(bind_by_move_pattern_guards)`. | Felix S. Klock II | -0/+6 |
| 2018-09-16 | Temporarily prohibit proc macro attributes placed after derives | Vadim Petrochenkov | -0/+4 |
| 2018-09-13 | introduce SelfCtor | F001 | -11/+2 |