Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Commit

Permalink
Fix breaking changes CircuitBreaker, and deprecate arrow.fx.coroutine…
Browse files Browse the repository at this point in the history
…s.Duration (#391)

* Add kotlin.time.Duration @ExperimentalTime, and add non experimental APIs
* Fix breaking changes, and remove deprecated types from new APIs
* Fix breaking change expiresAt
* Remove gradle config to all ExperimentalTime
* Revert kotlin.time.Duration change in Stream
* Add @ExperimentalTime to all kotin.time APIs
  • Loading branch information
nomisRev committed Feb 2, 2021
1 parent 0f60817 commit 7b164b8
Show file tree
Hide file tree
Showing 28 changed files with 245 additions and 198 deletions.
12 changes: 0 additions & 12 deletions arrow-fx-coroutines-stream/build.gradle
Expand Up @@ -19,15 +19,3 @@ dependencies {
testImplementation "io.kotest:kotest-assertions-core-jvm:$KOTEST_VERSION" // for kotest core jvm assertions
testImplementation "io.kotest:kotest-property-jvm:$KOTEST_VERSION" // for kotest property test
}

// usage of kotlin.time
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"]
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"]
}
}
12 changes: 0 additions & 12 deletions arrow-fx-coroutines-test/build.gradle
Expand Up @@ -17,15 +17,3 @@ dependencies {
api "io.kotest:kotest-assertions-core-jvm:$KOTEST_VERSION" // for kotest core jvm assertions
api "io.kotest:kotest-property-jvm:$KOTEST_VERSION" // for kotest property test
}

// usage of kotlin.time
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"]
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"]
}
}
12 changes: 0 additions & 12 deletions arrow-fx-coroutines/build.gradle
Expand Up @@ -19,15 +19,3 @@ dependencies {
testImplementation "io.kotest:kotest-assertions-core-jvm:$KOTEST_VERSION" // for kotest core jvm assertions
testImplementation "io.kotest:kotest-property-jvm:$KOTEST_VERSION" // for kotest property test
}

// usage of kotlin.time
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"]
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"]
}
}

0 comments on commit 7b164b8

Please sign in to comment.