Skip to content

Commit

Permalink
v1.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed Dec 13, 2024
1 parent 36070ff commit 9e2ab3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {


group = "com.github.holgerbrandl"
version = "1.0.3"
version = "1.0.4"


repositories {
Expand Down
2 changes: 2 additions & 0 deletions misc/kravis_release.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ fi

cd $KRAVIS_HOME

./gradlew check

git status
git commit -am "${kravis_version} release"
#git diff --exit-code || echo "There are uncomitted changes"
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/kravis/util/DeparseBuilder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fun <T> DataFrame.Companion.fromRecords(records: Iterable<T>, mapping: (T) -> Da
columnData.forEach { colName, colData -> colData.add(record[colName]) }
}

val map = columnData.map { (name, data) -> data.toColumn("data", Infer.Type) }
val map = columnData.map { (name, data) -> data.toColumn(name, Infer.Type) }
return map.toDataFrame()
}

Expand Down

0 comments on commit 9e2ab3e

Please sign in to comment.