Skip to content

Commit eac815c

Browse files
committed
prepare release 0.26.1
1 parent 9113eba commit eac815c

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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]
8+
9+
## [0.26.1] 2023-05-18
10+
11+
### Fixed
12+
- Made `assertFailure {}` inline like `assertThat {}` was to allow testing suspend function failures.
13+
714
## [0.26] 2023-05-12
815

916
### Changed
@@ -452,4 +459,4 @@ collections (ex: `Set`).
452459
- Fix issue with isEqualTo and nullable java strings
453460

454461
## [0.9] - 2017-09-25
455-
- Initial Release
462+
- Initial Release

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")
25+
testImplementation("com.willowtreeapps.assertk:assertk:0.26.1")
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")
40+
implementation("com.willowtreeapps.assertk:assertk:0.26.1")
4141
}
4242
}
4343
}

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
assertk = "0.27-SNAPSHOT"
2+
assertk = "0.26.1"
33
kotlin = "1.8.10"
44
kotlinx-coroutines = "1.7.0"
55
[libraries]
@@ -10,4 +10,4 @@ kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core",
1010
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinx-coroutines" }
1111
opentest4k = { module = "com.willowtreeapps.opentest4k:opentest4k", version = "1.2.3" }
1212
[plugins]
13-
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" }
13+
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" }

0 commit comments

Comments
 (0)