Skip to content

Commit b376397

Browse files
committed
Prepare release 0.25
1 parent 0867d3d commit b376397

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repositories {
1515
}
1616
1717
dependencies {
18-
testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.24'
18+
testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.25'
1919
}
2020
```
2121

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[versions]
2-
assertk = "0.25-SNAPSHOT"
2+
assertk = "0.25"
33
kotlin = "1.5.30"
44
[libraries]
55
kotlin-gradle = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
66
dokka-gradle = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version = "1.5.0" }
77
detekt-gradle = { module = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin", version = "1.18.1" }
88
kotlin-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]
1111
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" }
1212
git-publish = { id = "org.ajoberstar.git-publish", version = "3.0.0" }

0 commit comments

Comments
 (0)