Skip to content

Commit 7b5e2e6

Browse files
committed
version bumping kotlin-dl, sqlite, kotlinx-datetime, exclusions for kover, kotlinter
1 parent d0b50e9 commit 7b5e2e6

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ private fun String.findVersion(): Version {
6666

6767
// these names of outdated dependencies will not show up in the table output
6868
val dependencyUpdateExclusions = listOf(
69-
"klaxon", // 5.6 requires Java 11
69+
libs.klaxon.get().name, // 5.6 requires Java 11
70+
libs.plugins.kover.get().pluginId, // Requires more work to be updated to 1.7.0+
71+
libs.plugins.kotlinter.get().pluginId, // Updating requires major changes all across the project
7072
)
7173

7274
// run `./gradlew dependencyUpdates` to check for updates

core/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import com.google.devtools.ksp.gradle.KspTaskJvm
21
import com.google.devtools.ksp.gradle.KspTask
2+
import com.google.devtools.ksp.gradle.KspTaskJvm
33
import io.github.devcrocod.korro.KorroTask
4-
import nl.jolanrensen.docProcessor.defaultProcessors.*
4+
import nl.jolanrensen.docProcessor.defaultProcessors.ARG_DOC_PROCESSOR_LOG_NOT_FOUND
55
import nl.jolanrensen.docProcessor.gradle.creatingProcessDocTask
66
import org.gradle.jvm.tasks.Jar
77
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

examples/idea-examples/titanic/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ application.mainClass.set("org.jetbrains.kotlinx.dataframe.examples.titanic.ml.T
1414
dependencies {
1515
// implementation("org.jetbrains.kotlinx:dataframe:X.Y.Z")
1616
implementation(project(":"))
17-
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-api:0.5.1")
18-
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-impl:0.5.1")
19-
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-tensorflow:0.5.1")
20-
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.5.1")
17+
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-api:0.5.2")
18+
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-impl:0.5.2")
19+
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-tensorflow:0.5.2")
20+
implementation("org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.5.2")
2121
}
2222

2323
dataframes {

gradle/libs.versions.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
ksp = "1.9.21-1.0.15"
3-
kotlinJupyter = "0.11.0-358"
4-
ktlint = "3.4.5"
3+
kotlinJupyter = "0.11.0-358" # TODO
4+
ktlint = "3.4.5" # Updating requires major changes all across the project
55

66
# make sure to sync with :generator module
77
kotlin = "1.9.0"
@@ -13,7 +13,9 @@ libsPublisher = "0.0.60-dev-30"
1313
# dogfood Gradle / KSP plugins in tests and idea-examples modules
1414
dataframe = "0.12.1"
1515
korro = "0.1.5"
16-
kover = "0.6.0-Beta"
16+
17+
# Requires more work to be updated to 1.7.0+
18+
kover = "0.6.1"
1719

1820
commonsCsv = "1.10.0"
1921
commonsCompress = "1.25.0"
@@ -24,8 +26,8 @@ mariadb = "3.3.2"
2426
h2db = "2.2.224"
2527
mysql = "8.0.33"
2628
postgresql = "42.7.1"
27-
sqlite = "3.42.0.1"
28-
kotlinDatetime = "0.4.0"
29+
sqlite = "3.45.1.0"
30+
kotlinDatetime = "0.5.0"
2931
openapi = "2.1.20"
3032
kotlinLogging = "6.0.3"
3133
sl4j = "2.0.12"

0 commit comments

Comments
 (0)