From e98c98e4eb81304c323ebc8b49f7ed8aed8e2214 Mon Sep 17 00:00:00 2001 From: Evan Tatarka Date: Wed, 13 Sep 2023 11:38:47 -0700 Subject: [PATCH] Prepare release v0.27.0 --- CHANGELOG.md | 11 ++++++++++- README.md | 4 ++-- gradle/libs.versions.toml | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbd81831..b0b89a2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,16 @@ 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.27.0] 2023-09-13 + +### Changed +- Minimum supported kotlin version is 1.9.0 +- Added support for WASM targets (note: this only applies to the core library + and not assertk-coroutines as the coroutines library doesn't have a stable + release for it yet) + +### Breaking Changes +- Previous `assertThat {}` deprecation warning is now an error ## [0.26.1] 2023-05-18 diff --git a/README.md b/README.md index b07b3004..b9d85d84 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { } dependencies { - testImplementation("com.willowtreeapps.assertk:assertk:0.26.1") + testImplementation("com.willowtreeapps.assertk:assertk:0.27.0") } ``` @@ -37,7 +37,7 @@ kotlin { sourceSets { val commonTest by getting { dependencies { - implementation("com.willowtreeapps.assertk:assertk:0.26.1") + implementation("com.willowtreeapps.assertk:assertk:0.27.0") } } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4f877217..e9dff8be 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -assertk = "0.26.1" +assertk = "0.27.0" kotlin = "1.9.0" kotlinx-coroutines = "1.7.0" [libraries]