File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99### Changed
1010- Minimum supported kotlin version is 1.5.30
1111- Minimum supported coroutines version is 1.5.2
12+ - Replaced custom result type returned from ` assertThat {} ` with ` kotlin.Result ` . This is a binary-incompatible change,
13+ but it should be source-compatible in most cases as referencing the custom result type directly was discouraged.
1214
1315### Added
14- - Added ` startsWith ` and ` endsWith ` for ` List ` .
16+ - Added ` startsWith() ` and ` endsWith() ` for ` List ` .
1517- Added ` Optional<>.isPresent() ` , ` Optional<>.isEmpty() ` , ` Optional<>.hasValue() `
1618- Added expanded set up apple targets for kotlin native.
1719
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ repositories {
1515}
1616
1717dependencies {
18- testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.24 '
18+ testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.25 '
1919}
2020```
2121
Original file line number Diff line number Diff line change 11[versions ]
2- assertk = " 0.25-SNAPSHOT "
2+ assertk = " 0.25"
33kotlin = " 1.5.30"
44[libraries ]
55kotlin-gradle = { module = " org.jetbrains.kotlin:kotlin-gradle-plugin" , version.ref = " kotlin" }
66dokka-gradle = { module = " org.jetbrains.dokka:dokka-gradle-plugin" , version = " 1.5.0" }
77detekt-gradle = { module = " io.gitlab.arturbosch.detekt:detekt-gradle-plugin" , version = " 1.18.1" }
88kotlin-coroutines = { module = " org.jetbrains.kotlinx:kotlinx-coroutines-core" , version = " 1.5.2" }
9- opentest4k = { module = " com.willowtreeapps.opentest4k:opentest4k" , version = " 1.2.2-SNAPSHOT " }
9+ opentest4k = { module = " com.willowtreeapps.opentest4k:opentest4k" , version = " 1.2.2" }
1010[plugins ]
1111nexus-publish = { id = " io.github.gradle-nexus.publish-plugin" , version = " 1.1.0" }
1212git-publish = { id = " org.ajoberstar.git-publish" , version = " 3.0.0" }
You can’t perform that action at this time.
0 commit comments