diff --git a/README.md b/README.md index fc2b627..7064ab0 100644 --- a/README.md +++ b/README.md @@ -228,6 +228,10 @@ Feel free to use the code (in package de.platon42.intellij.jupiter) for your pro ## Changelog +#### V0.5 (13-Apr-19) +- Fixed incompatibility with IDEA versions < 2018.2 (affected AssertThatSizeInspection). +- Fixed missing Guava imports (if not already present) for AssertThatGuavaInspection. This was a major PITA to get right. + #### V0.4 (11-Apr-19) - Reduced minimal supported IDEA version from 2018.2 to 2017.2. - New inspection AssertThatJava8Optional that operates on Java 8 Optional objects and tries to use contains(), containsSame(), isPresent(), and isNotPresent() instead. diff --git a/build.gradle b/build.gradle index b7d887b..559d802 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'de.platon42' -version '0.4' +version '0.5' repositories { mavenCentral() @@ -41,6 +41,11 @@ intellij { patchPluginXml { changeNotes """ +

V0.5 (13-Apr-19)

+

V0.4 (11-Apr-19)