From b3763979256c59f410507e33910cff07a06d9733 Mon Sep 17 00:00:00 2001 From: Evan Tatarka Date: Sun, 12 Sep 2021 21:07:41 -0400 Subject: [PATCH] Prepare release 0.25 --- CHANGELOG.md | 4 +++- README.md | 2 +- gradle/libs.versions.toml | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee015ac5..a9beea91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - Minimum supported kotlin version is 1.5.30 - Minimum supported coroutines version is 1.5.2 +- Replaced custom result type returned from `assertThat {}` with `kotlin.Result`. This is a binary-incompatible change, + but it should be source-compatible in most cases as referencing the custom result type directly was discouraged. ### Added -- Added `startsWith` and `endsWith` for `List`. +- Added `startsWith()` and `endsWith()` for `List`. - Added `Optional<>.isPresent()`, `Optional<>.isEmpty()`, `Optional<>.hasValue()` - Added expanded set up apple targets for kotlin native. diff --git a/README.md b/README.md index 4af6dc54..1c447b41 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ repositories { } dependencies { - testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.24' + testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.25' } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7a65f6a3..daeaf685 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,12 +1,12 @@ [versions] -assertk = "0.25-SNAPSHOT" +assertk = "0.25" kotlin = "1.5.30" [libraries] kotlin-gradle = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } dokka-gradle = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version = "1.5.0" } detekt-gradle = { module = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin", version = "1.18.1" } kotlin-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version = "1.5.2" } -opentest4k = { module = "com.willowtreeapps.opentest4k:opentest4k", version = "1.2.2-SNAPSHOT" } +opentest4k = { module = "com.willowtreeapps.opentest4k:opentest4k", version = "1.2.2" } [plugins] nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" } git-publish = { id = "org.ajoberstar.git-publish", version = "3.0.0" } \ No newline at end of file