File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 0.20] 2019-09-13
8+
9+ ### Added
10+ - Add ` corresponds ` /` doesNotCorrespond ` to compare values with a correspondence function. This is
11+ useful when the value doesn't implement ` equals ` .
12+
13+ ### Changed
14+ - Changed the signature of ` isEqualTo ` from ` Any? ` to ` T ` . This should not effect any existing code
15+ due to ` T ` being covariant. The one improvement this brings is that literal numbers can be inferred
16+ to the correct type. Before this change ` assertThat(1L).isEqualTo(1) ` would fail, now it passes.
17+
18+ ### Fixed
19+ - Fixed ` isSuccess ` failing on null return values
20+
721## [ 0.19] 2019-02-20
822
923### Fixed
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
1212
1313allprojects {
1414 group ' com.willowtreeapps.assertk'
15- version ' 0.20-SNAPSHOT '
15+ version ' 0.20'
1616}
1717
1818ext {
You can’t perform that action at this time.
0 commit comments