Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
| datasource     | package                                                         | from   | to     |
| -------------- | --------------------------------------------------------------- | ------ | ------ |
| gradle-version | gradle                                                          | 7.6.3  | 7.6.4  |
| maven          | io.kotest:kotest-runner-junit5-jvm                              | 5.8.0  | 5.8.1  |
| maven          | io.kotest:kotest-assertions-core                                | 5.8.0  | 5.8.1  |
| maven          | io.kotest:kotest-property                                       | 5.8.0  | 5.8.1  |
| maven          | io.arrow-kt:arrow-fx-coroutines                                 | 1.2.1  | 1.2.4  |
| maven          | org.jetbrains.kotlinx:kotlinx-coroutines-core                   | 1.7.3  | 1.8.0  |
| maven          | io.arrow-kt:arrow-optics                                        | 1.2.1  | 1.2.4  |
| maven          | io.arrow-kt:arrow-core                                          | 1.2.1  | 1.2.4  |
| maven          | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin   | 5.8.0  | 5.8.1  |
| maven          | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 1.9.22 | 1.9.24 |
  • Loading branch information
renovate[bot] authored May 7, 2024
1 parent 4ccaf3c commit 5794d08
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.9.22"
id("io.kotest.multiplatform") version "5.8.0"
kotlin("jvm") version "1.9.24"
id("io.kotest.multiplatform") version "5.8.1"
}

group = "org.example"
Expand All @@ -16,15 +16,15 @@ tasks.withType<Test> {

dependencies {
implementation(kotlin("stdlib"))
implementation("io.arrow-kt:arrow-core:1.2.1")
implementation("io.arrow-kt:arrow-optics:1.2.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.1")
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-optics:1.2.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.4")

testImplementation("io.kotest:kotest-property:5.8.0")
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
testImplementation("io.kotest:kotest-property:5.8.1")
testImplementation("io.kotest:kotest-assertions-core:5.8.1")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.4.0")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.4.0") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.4.0") // optional
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.8.0")
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.8.1")
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 5794d08

Please sign in to comment.