diff --git a/README.md b/README.md
index 28b5cc5f2..96a8ce59c 100644
--- a/README.md
+++ b/README.md
@@ -13,18 +13,20 @@ lombok-intellij-plugin [![Donate](https://www.paypal.com/en_US/i/btn/btn_donateC
Provides support for lombok annotations to write great Java code with IntelliJ IDEA.
-**Last version (0.29) released on 01.03.2020**
+**Last version (0.30) released on 05.09.2020**
---
## Unfortunately the current IntelliJ 2020.2 version has a bug and lombok plugin can't be used normally.
## Use previous IntelliJ version 2020.1 or update to IntelliJ IDEA 2020.2.1
---
-34th version of plugin released.
+35th version of plugin released.
Install it automatically from IntelliJ Idea plugin repository.
-Tested and supports IntelliJ versions: 2016.2, 2016.3, 2017.X, 2018.X, 2019.1, 2019.2 and 2019.3
+Tested and supports IntelliJ versions: 2016.2, 2016.3, 2017.X, 2018.X, 2019.1, 2019.2, 2019.3, 2020.1 and 2020.2.1
+
+Last support for IntelliJ 2016.2 and 2016.3 by plugin version 0.30!
Last support for IntelliJ 15.0.6 and 2016.1 by plugin version 0.19!
diff --git a/build.gradle b/build.gradle
index 808a06aee..ceef4ab25 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,5 @@
plugins {
- id "org.jetbrains.intellij" version "0.4.21"
+ id "org.jetbrains.intellij" version "0.4.22"
id "org.jetbrains.grammarkit" version "2019.3"
id "com.github.ManifestClasspath" version "0.1.0-RELEASE"
}
@@ -83,7 +83,7 @@ dependencies {
lombok group: 'org.projectlombok', name: 'lombok', version: '1.18.12', classifier: 'sources', ext: 'jar'
testImplementation("junit:junit:4.13")
- testImplementation("org.mockito:mockito-core:3.5.7")
+ testImplementation("org.mockito:mockito-core:3.5.10")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.6.2")
}
diff --git a/gradle.properties b/gradle.properties
index 01249add6..aebe742e7 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -7,7 +7,7 @@ ideaVersion=2019.3.3
#
pluginGroup=de.plushnikov.intellij.plugin
pluginName=lombok-plugin
-pluginVersion=0.30
+pluginVersion=0.31
#
javaVersion=1.8
sources=true
diff --git a/parts/pluginChanges.html b/parts/pluginChanges.html
index 9ea056346..0cf2ccc84 100644
--- a/parts/pluginChanges.html
+++ b/parts/pluginChanges.html
@@ -1,4 +1,9 @@
+ - 0.31
+
+ - Fixed #923: ArrayIndexOutOfBoundsException in ReplaceExplicitTypeWithVariableIntention
+
+
- 0.30
- Fixed #570: Better support for @Builder.Default (var$set and var$value fields)
diff --git a/src/main/java/de/plushnikov/intellij/plugin/Version.java b/src/main/java/de/plushnikov/intellij/plugin/Version.java
index 4fabbb42b..5f11b21b8 100644
--- a/src/main/java/de/plushnikov/intellij/plugin/Version.java
+++ b/src/main/java/de/plushnikov/intellij/plugin/Version.java
@@ -5,7 +5,7 @@ public interface Version {
/**
* Current plugin version.
*/
- String PLUGIN_VERSION = "0.30";
+ String PLUGIN_VERSION = "0.31";
/**
* Current version of lombok plugin
*/
diff --git a/src/main/java/de/plushnikov/intellij/plugin/intention/valvar/to/AbstractReplaceExplicitTypeWithVariableIntentionAction.java b/src/main/java/de/plushnikov/intellij/plugin/intention/valvar/to/AbstractReplaceExplicitTypeWithVariableIntentionAction.java
index 6dce56931..09c0c38b8 100644
--- a/src/main/java/de/plushnikov/intellij/plugin/intention/valvar/to/AbstractReplaceExplicitTypeWithVariableIntentionAction.java
+++ b/src/main/java/de/plushnikov/intellij/plugin/intention/valvar/to/AbstractReplaceExplicitTypeWithVariableIntentionAction.java
@@ -27,7 +27,7 @@ public String getFamilyName() {
@Override
public boolean isAvailableOnDeclarationStatement(PsiDeclarationStatement context) {
PsiElement[] declaredElements = context.getDeclaredElements();
- if (declaredElements.length > 1) {
+ if (declaredElements.length != 1) {
return false;
}
PsiElement declaredElement = declaredElements[0];
diff --git a/src/main/resources/messages/lombokBundle.properties b/src/main/resources/messages/lombokBundle.properties
index ed3351edb..c11d31863 100644
--- a/src/main/resources/messages/lombokBundle.properties
+++ b/src/main/resources/messages/lombokBundle.properties
@@ -20,14 +20,7 @@ daemon.donate.title=Lombok support plugin updated to v{0}
daemon.donate.content=
\
Helpful? Donate with PayPal
\
Fixes:
\
-- Fixed (#570): Better support for @Builder.Default (var$set and var$value fields)
\
-- Fixed (#754): Intention to convert explicit type to var/val or vice versa, thanks to @Sheigutn (Florian Böhm)
\
-- Fixed (#760): Plugin and compiler disagree on @Builder method generation
\
-- Fixed (#771): @Data No error message when there is no default constructor in superclass
\
-- Fixed (#805): Do not use deprecated constructor injection
\
-- Fixed (#807): Do not use ImplicitUsageProvider in GenerateConstructorAction
\
-- Fixed (#822): @Builder annotation on multiple methods of same class is broken
\
-- Fixed (#825): intellij objects to overriding builder methods when setterPrefix set
\
+- Fixed (#923): ArrayIndexOutOfBoundsException in ReplaceExplicitTypeWithVariableIntention
\
\
If you find my plugin helpful, donate me using
\
PayPal\