Skip to content

Commit e98c98e

Browse files
committed
Prepare release v0.27.0
1 parent 2fe72e8 commit e98c98e

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.27.0] 2023-09-13
8+
9+
### Changed
10+
- Minimum supported kotlin version is 1.9.0
11+
- Added support for WASM targets (note: this only applies to the core library
12+
and not assertk-coroutines as the coroutines library doesn't have a stable
13+
release for it yet)
14+
15+
### Breaking Changes
16+
- Previous `assertThat {}` deprecation warning is now an error
817

918
## [0.26.1] 2023-05-18
1019

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
}
2323

2424
dependencies {
25-
testImplementation("com.willowtreeapps.assertk:assertk:0.26.1")
25+
testImplementation("com.willowtreeapps.assertk:assertk:0.27.0")
2626
}
2727
```
2828

@@ -37,7 +37,7 @@ kotlin {
3737
sourceSets {
3838
val commonTest by getting {
3939
dependencies {
40-
implementation("com.willowtreeapps.assertk:assertk:0.26.1")
40+
implementation("com.willowtreeapps.assertk:assertk:0.27.0")
4141
}
4242
}
4343
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
assertk = "0.26.1"
2+
assertk = "0.27.0"
33
kotlin = "1.9.0"
44
kotlinx-coroutines = "1.7.0"
55
[libraries]

0 commit comments

Comments
 (0)