Updated readme for release. Typofix.

This commit is contained in:
Chris Hodges 2022-08-15 23:13:31 +02:00
parent bb7497b494
commit a657d2bfaa
2 changed files with 12 additions and 4 deletions

View File

@ -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

View File

@ -56,7 +56,7 @@ patchPluginXml {
<h4>V1.13 (15-Aug-22)</h4>
<ul>
<li>Maintenance. Updated various dependencies (Kotlin 1.7.10) and AssertJ 3.23.1 and AssertJ-Guava 3.5.0.
<li>Tried to fix unreproducable issue #9.
<li>Tried to fix unreproducible issue #9.
<li>Added workaround for upcoming API change in IntelliJ breaking older releases.
<li>Added AssertThatIsZeroOne inspection demanded by issue #5.
<li>Fix for wrongly joining statements that cannot be trivially joined (e.g. with filteredOn). Fixes issue #6.