Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
1.4.3 source code.tar.gz | 2024-06-27 | 331.0 kB | |
1.4.3 source code.zip | 2024-06-27 | 542.5 kB | |
README.md | 2024-06-27 | 565 Bytes | |
Totals: 3 Items | 874.1 kB | 0 |
- Added more nullness information to our APIs (in the form of JSpecify annotations). This could lead to additional warnings (or even errors) for users of Kotlin and other nullness checkers. Please report any problems. (ee680cbaf)
- Deprecated
Subject.Factory
methods for Java 8 types. We won't remove them, but you can simplify your code by migrating off them: Just replaceassertAbout(foos()).that(foo)
withassertThat(foo)
(orabout(foos()).that(foo)
withthat(foo)
). (59e7a5065)