From eac815c5c5ad8b6d209f9c81633a3b47c3180c25 Mon Sep 17 00:00:00 2001 From: Evan Tatarka Date: Thu, 18 May 2023 15:54:18 -0700 Subject: [PATCH] prepare release 0.26.1 --- CHANGELOG.md | 9 ++++++++- README.md | 4 ++-- gradle/libs.versions.toml | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fde2ecc7..fbd81831 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.26.1] 2023-05-18 + +### Fixed +- Made `assertFailure {}` inline like `assertThat {}` was to allow testing suspend function failures. + ## [0.26] 2023-05-12 ### Changed @@ -452,4 +459,4 @@ collections (ex: `Set`). - Fix issue with isEqualTo and nullable java strings ## [0.9] - 2017-09-25 -- Initial Release \ No newline at end of file +- Initial Release diff --git a/README.md b/README.md index 6d36232c..b07b3004 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { } dependencies { - testImplementation("com.willowtreeapps.assertk:assertk:0.26") + testImplementation("com.willowtreeapps.assertk:assertk:0.26.1") } ``` @@ -37,7 +37,7 @@ kotlin { sourceSets { val commonTest by getting { dependencies { - implementation("com.willowtreeapps.assertk:assertk:0.26") + implementation("com.willowtreeapps.assertk:assertk:0.26.1") } } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index b85b6fb7..321bd84b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -assertk = "0.27-SNAPSHOT" +assertk = "0.26.1" kotlin = "1.8.10" kotlinx-coroutines = "1.7.0" [libraries] @@ -10,4 +10,4 @@ kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinx-coroutines" } opentest4k = { module = "com.willowtreeapps.opentest4k:opentest4k", version = "1.2.3" } [plugins] -nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" } \ No newline at end of file +nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" }