about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2018-08-30 20:15:34 +0200
committerGitHub <noreply@github.com>2018-08-30 20:15:34 +0200
commit3ee762870f75ba73ea1cf8c17678ef7fc69e8ceb (patch)
treecadd047652c0effb9a10f11782ae8cbd5a19ac04 /src/libsyntax
parent1535075b58bc725ea71dc0103bda5b840632e957 (diff)
parent9395a02b5aba108ce015f4baa761b8927f91d3d0 (diff)
downloadrust-3ee762870f75ba73ea1cf8c17678ef7fc69e8ceb.tar.gz
rust-3ee762870f75ba73ea1cf8c17678ef7fc69e8ceb.zip
Rollup merge of #53702 - jkozlowski:correct_version_for_macro_vis_matcher, r=cramertj
Fix stabilisation version for macro_vis_matcher.

r? @cramertj
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index bb5d929a323..080860f17f5 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -645,7 +645,7 @@ declare_features! (
     // Defining procedural macros in `proc-macro` crates
     (accepted, proc_macro, "1.29.0", Some(38356), None),
     // Allows use of the :vis macro fragment specifier
-    (accepted, macro_vis_matcher, "1.29.0", Some(41022), None),
+    (accepted, macro_vis_matcher, "1.30.0", Some(41022), None),
     // Allows importing and reexporting macros with `use`,
     // enables macro modularization in general.
     (accepted, use_extern_macros, "1.30.0", Some(35896), None),