From eb3b672033bb6a0c69d62c3016485b5ce3797da9 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 7 Apr 2016 22:21:46 +0000 Subject: [PATCH] Set the version number for stabilization of braced_empty_structs and augmented_assignment to 1.8.0. Per the comments, the numbers in this table reflect the "current status". --- src/libsyntax/feature_gate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 5ade636a327..167099bffcd 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -218,10 +218,10 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option, Status ("naked_functions", "1.9.0", Some(32408), Active), // allow empty structs and enum variants with braces - ("braced_empty_structs", "1.5.0", Some(29720), Accepted), + ("braced_empty_structs", "1.8.0", Some(29720), Accepted), // allow overloading augmented assignment operations like `a += b` - ("augmented_assignments", "1.5.0", Some(28235), Accepted), + ("augmented_assignments", "1.8.0", Some(28235), Accepted), // allow `#[no_debug]` ("no_debug", "1.5.0", Some(29721), Active),