From b04d88a0a0ed083d52630db009a52f1521252102 Mon Sep 17 00:00:00 2001 From: Mcat12 Date: Sun, 14 Feb 2021 16:22:40 -0500 Subject: [PATCH] Bump to 0.2.2 --- build.gradle | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c9df5a4..1868d48 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { import org.jetbrains.grammarkit.tasks.* group 'com.mdrobnak' -version '0.2.1' +version '0.2.2' repositories { mavenCentral() @@ -64,6 +64,14 @@ patchPluginXml { sinceBuild "202.6397.94" changeNotes """ + 0.2.2
+ * Remove trailing newlines from user code
+ * Give color to commas
+ * Fix exception when refactoring affects injected Rust type references
+ * Fix refactoring in Rust code adding a duplicate action type in affected LALRPOP code
+ * Support 2021.1 EAP
+
+ 0.2.1
* Inject Rust into type references (e.g. explicit nonterminal types)
* Handle fallible user actions (@dblanovschi)