Skip to content

Commit 2b664da

Browse files
authored
Update README and prepare for release (#244)
1 parent 8cdbb1e commit 2b664da

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313
allprojects {
1414
group 'com.willowtreeapps.assertk'
15-
version '0.20-SNAPSHOT'
15+
version '0.20'
1616
}
1717

1818
ext {

0 commit comments

Comments
 (0)