Skip to content

Commit 978a9ce

Browse files
authored
Merge pull request #1529 from Kotlin/kodex-bump
KoDEx bump
2 parents a5a069f + 8b23f52 commit 978a9ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/DataFrameImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ internal open class DataFrameImpl<T>(cols: List<AnyCol>, val nrow: Int) :
9393

9494
override fun columns() = columns
9595

96-
override fun columnNames() = columns.map { it.name() }
96+
override fun columnNames(): List<String> = columns.map { it.name() }
9797

9898
override fun columnTypes() = columns.map { it.type() }
9999

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
2-
ksp = "2.2.20-2.0.2"
2+
ksp = "2.2.21-2.0.4"
33
kotlinJupyter = "0.15.0-629"
44

55
ktlint = "12.3.0"
66

7-
kotlin = "2.2.20"
7+
kotlin = "2.2.21"
88
# make sure to sync manually with :plugins:keywords-generator module
99
kotlinpoet = "2.2.0"
1010

11-
dokka = "2.0.0"
11+
dokka = "2.1.0"
1212
libsPublisher = "2.2.0-dev-61"
1313

1414
# "Bootstrap" version of the dataframe, used in the build itself to generate @DataSchema APIs,
@@ -46,7 +46,7 @@ kotestAsserions = "6.0.0.M1"
4646

4747
jsoup = "1.18.3"
4848
arrow = "18.3.0"
49-
kodex = "0.4.4"
49+
kodex = "0.5.0"
5050
simpleGit = "2.2.1"
5151
dependencyVersions = "0.52.0"
5252
plugin-publish = "1.3.0"

0 commit comments

Comments
 (0)