From 9f9c4a347be1c15bfb23d99adc9a782a80cd4681 Mon Sep 17 00:00:00 2001 From: Alexander Nozik Date: Sun, 28 Jan 2024 18:35:47 +0300 Subject: [PATCH] Fix all issues for 2.0.0 --- gradle.properties | 2 +- kmath-histograms/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index af735ea2d..3afebb73b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,6 +12,6 @@ org.gradle.jvmargs=-Xmx4096m org.gradle.parallel=true org.gradle.workers.max=4 -toolsVersion=0.15.0-kotlin-2.0.0-Beta1 +toolsVersion=0.15.2-kotlin-2.0.0-Beta3 #kotlin.experimental.tryK2=true #kscience.wasm.disabled=true \ No newline at end of file diff --git a/kmath-histograms/build.gradle.kts b/kmath-histograms/build.gradle.kts index 33704c29e..cf68fbb47 100644 --- a/kmath-histograms/build.gradle.kts +++ b/kmath-histograms/build.gradle.kts @@ -6,6 +6,7 @@ kscience{ jvm() js() native() + useCoroutines() } //apply(plugin = "kotlinx-atomicfu") @@ -21,7 +22,6 @@ kotlin.sourceSets { dependencies { implementation(project(":kmath-for-real")) implementation(projects.kmath.kmathStat) - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0") } } }