Skip to content

Commit

Permalink
prepare release 0.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed May 19, 2023
1 parent 9113eba commit eac815c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -452,4 +459,4 @@ collections (ex: `Set`).
- Fix issue with isEqualTo and nullable java strings

## [0.9] - 2017-09-25
- Initial Release
- Initial Release
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")
testImplementation("com.willowtreeapps.assertk:assertk:0.26.1")
}
```

Expand All @@ -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")
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
assertk = "0.27-SNAPSHOT"
assertk = "0.26.1"
kotlin = "1.8.10"
kotlinx-coroutines = "1.7.0"
[libraries]
Expand All @@ -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" }
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" }

0 comments on commit eac815c

Please sign in to comment.