From a657d2bfaa3694b080bf7d947daf6a568c5ab860 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Mon, 15 Aug 2022 23:13:31 +0200 Subject: [PATCH] Updated readme for release. Typofix. --- README.md | 14 +++++++++++--- build.gradle | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 084ca48..ff83a8f 100644 --- a/README.md +++ b/README.md @@ -178,13 +178,13 @@ You can toggle the various inspections in the Settings/Editor/Inspections in the constant expressions, too. ``` - from: assertThat(numeric).isEqualTo(0); + from: assertThat(numeric).isEqualTo(0); to: assertThat(numeric).isZero(); - from: assertThat(numeric).isNotEqualTo(0); + from: assertThat(numeric).isNotEqualTo(0); to: assertThat(numeric).isNotZero(); - from: assertThat(numeric).isEqualTo(1); + from: assertThat(numeric).isEqualTo(1); to: assertThat(numeric).isOne(); ``` @@ -835,6 +835,14 @@ Feel free to use the code (in package ```de.platon42.intellij.jupiter```) for yo ## Changelog +### V1.13 (15-Aug-22) + +- Maintenance. Updated various dependencies (Kotlin 1.7.10) and AssertJ 3.23.1 and AssertJ-Guava 3.5.0. +- Tried to fix unreproducible issue #9. +- Added workaround for upcoming API change in IntelliJ breaking older releases. +- Added AssertThatIsZeroOne inspection demanded by issue #5. +- Fix for wrongly joining statements that cannot be trivially joined (e.g. with filteredOn). Fixes issue #6. + ### V1.12 (06-May-21) - Maintenance. Updated various dependencies (Kotlin 1.50.0) and AssertJ 3.19.0 diff --git a/build.gradle b/build.gradle index 01d8726..3b51073 100644 --- a/build.gradle +++ b/build.gradle @@ -56,7 +56,7 @@ patchPluginXml {

V1.13 (15-Aug-22)