Skip to content

Commit

Permalink
Prepare release v0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Sep 13, 2023
1 parent 2fe72e8 commit e98c98e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {
}

dependencies {
testImplementation("com.willowtreeapps.assertk:assertk:0.26.1")
testImplementation("com.willowtreeapps.assertk:assertk:0.27.0")
}
```

Expand All @@ -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")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
assertk = "0.26.1"
assertk = "0.27.0"
kotlin = "1.9.0"
kotlinx-coroutines = "1.7.0"
[libraries]
Expand Down

0 comments on commit e98c98e

Please sign in to comment.