Skip to content

Commit

Permalink
Update README and prepare for release (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Sep 13, 2019
1 parent 8cdbb1e commit 2b664da
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.20] 2019-09-13

### Added
- Add `corresponds`/`doesNotCorrespond` to compare values with a correspondence function. This is
useful when the value doesn't implement `equals`.

### Changed
- Changed the signature of `isEqualTo` from `Any?` to `T`. This should not effect any existing code
due to `T` being covariant. The one improvement this brings is that literal numbers can be inferred
to the correct type. Before this change `assertThat(1L).isEqualTo(1)` would fail, now it passes.

### Fixed
- Fixed `isSuccess` failing on null return values

## [0.19] 2019-02-20

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

allprojects {
group 'com.willowtreeapps.assertk'
version '0.20-SNAPSHOT'
version '0.20'
}

ext {
Expand Down

0 comments on commit 2b664da

Please sign in to comment.