Skip to content

Commit

Permalink
Release v0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Amos authored and Kritarie committed Sep 3, 2020
1 parent d822528 commit 0960a0b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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).

## [Unreleased]
## [0.23] 2020-09-01

### Changed
- Minimum supported kotlin version is 1.4.0
Expand All @@ -20,9 +20,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
```
instead of defining one for each platform.
- Added support for the Kotlin/JS [IR compiler](https://kotlinlang.org/docs/reference/js-ir-compiler.html)
- Added optional `displayActual` function to `assertThat` as an alternative to `.toString()` for external types
- Moved most `String` assertions to `CharSequence`

### Added
- Add `prop` function with `KProperty1` argument.
- Added `prop` function with `KProperty1` argument.
- Added `containsExactlyInAnyOrder` assertion for `Iterable` and primitive arrays
- Added initial Coroutines artifact (additional support planned for the future)

### Deprecated
- Deprecated `prop` function with `KCallable` argument. Use the new overload
Expand All @@ -34,6 +38,7 @@ with type-safe `KProperty1` argument or another overload with explicit name and
assertThat(floatArrayOf(Float.Nan)).contains(Float.NaN)
```
will pass when it failed before.
- Fixes a [bug](https://github.com/willowtreeapps/assertk/issues/314) causing failures to sometimes be dropped in a nested assertion context

## [0.22] 2020-03-11

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}
dependencies {
testCompile 'com.willowtreeapps.assertk:assertk-jvm:0.22'
testCompile 'com.willowtreeapps.assertk:assertk-jvm:0.23'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ plugins {
id 'org.ajoberstar.git-publish' version '2.1.1' apply false
}

version = '0.23-SNAPSHOT'
version = '0.23'

ext {
isReleaseVersion = !(version =~ /-SNAPSHOT$/)

opentest4k_version = '1.2.1-SNAPSHOT'
opentest4k_version = '1.2.1'
kotlin_coroutines_version = '1.3.9'
}

Expand Down

0 comments on commit 0960a0b

Please sign in to comment.