Skip to content

Commit

Permalink
Prepare release 0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Sep 13, 2021
1 parent 0867d3d commit b376397
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Minimum supported kotlin version is 1.5.30
- Minimum supported coroutines version is 1.5.2
- Replaced custom result type returned from `assertThat {}` with `kotlin.Result`. This is a binary-incompatible change,
but it should be source-compatible in most cases as referencing the custom result type directly was discouraged.

### Added
- Added `startsWith` and `endsWith` for `List`.
- Added `startsWith()` and `endsWith()` for `List`.
- Added `Optional<>.isPresent()`, `Optional<>.isEmpty()`, `Optional<>.hasValue()`
- Added expanded set up apple targets for kotlin native.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}
dependencies {
testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.24'
testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.25'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[versions]
assertk = "0.25-SNAPSHOT"
assertk = "0.25"
kotlin = "1.5.30"
[libraries]
kotlin-gradle = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
dokka-gradle = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version = "1.5.0" }
detekt-gradle = { module = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin", version = "1.18.1" }
kotlin-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version = "1.5.2" }
opentest4k = { module = "com.willowtreeapps.opentest4k:opentest4k", version = "1.2.2-SNAPSHOT" }
opentest4k = { module = "com.willowtreeapps.opentest4k:opentest4k", version = "1.2.2" }
[plugins]
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.1.0" }
git-publish = { id = "org.ajoberstar.git-publish", version = "3.0.0" }

0 comments on commit b376397

Please sign in to comment.