Skip to content

Commit 4a89cc9

Browse files
committed
update library version across repo
1 parent 841590b commit 4a89cc9

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
ALGOLIA_INDEX_NAME: prod_DATAFRAME_HELP
1616
ALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }}
1717
CONFIG_JSON_PRODUCT: Dataframe
18-
CONFIG_JSON_VERSION: 0.9
18+
CONFIG_JSON_VERSION: 0.10
1919

2020
jobs:
2121
build-job:

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Kotlin Dataframe: typesafe in-memory structured data processing for JVM
22
[![JetBrains incubator project](https://jb.gg/badges/incubator.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
33
[![Kotlin component alpha stability](https://img.shields.io/badge/project-alpha-kotlin.svg?colorA=555555&colorB=DB3683&label=&logo=kotlin&logoColor=ffffff&logoWidth=10)](https://kotlinlang.org/docs/components-stability.html)
4-
[![Kotlin](https://img.shields.io/badge/kotlin-1.8.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
4+
[![Kotlin](https://img.shields.io/badge/kotlin-1.8.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
55
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/dataframe?color=blue&label=Maven%20Central)](https://search.maven.org/artifact/org.jetbrains.kotlinx/dataframe)
66
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
77

@@ -24,12 +24,18 @@ Explore [**documentation**](https://kotlin.github.io/dataframe/overview.html) fo
2424
## Setup
2525

2626
### Gradle
27-
```groovy
27+
```kotlin
28+
plugins {
29+
// Optional Gradle plugin for enhanced type safety and schema generation
30+
// https://kotlin.github.io/dataframe/gradle.html
31+
id("org.jetbrains.kotlinx.dataframe") version "0.10.0"
32+
}
33+
2834
repositories {
2935
mavenCentral()
3036
}
3137
dependencies {
32-
implementation("org.jetbrains.kotlinx:dataframe:0.9.1")
38+
implementation("org.jetbrains.kotlinx:dataframe:0.10.0")
3339
}
3440
```
3541
### Jupyter Notebook

docs/StardustDocs/project.ihp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<ihp version="2.0">
55
<categories src="c.list"/>
66
<topics dir="topics"/>
7-
<images dir="images" version="0.9" web-path="images/" />
7+
<images dir="images" version="0.10" web-path="images/" />
88
<vars src="v.list"/>
9-
<instance src="d.tree" version="0.9" id="dataframe"/>
9+
<instance src="d.tree" version="0.10" id="dataframe"/>
1010
<settings>
1111
<default-property element-name="chapter" property-name="show-structure-depth" value="2"/>
1212
</settings>

docs/StardustDocs/topics/gradle.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface Person {
2828
}
2929
```
3030

31-
#### Execute kspKotlin task to generate type-safe accessors for schemas:
31+
#### Execute assemble task to generate type-safe accessors for schemas:
3232

3333
<!---FUN useProperties-->
3434

@@ -37,7 +37,7 @@ val df = dataFrameOf("name", "age")(
3737
"Alice", 15,
3838
"Bob", 20
3939
).cast<Person>()
40-
// age only available after executing `build` or `kspKotlin`!
40+
// age only available after executing `assemble` or `kspKotlin`!
4141
val teens = df.filter { age in 10..19 }
4242
teens.print()
4343
```
@@ -46,7 +46,7 @@ teens.print()
4646

4747
### Schema inference
4848

49-
Specify schema with preferred method and execute the `build` task.
49+
Specify schema with preferred method and execute the `assemble` task.
5050

5151
<tabs>
5252
<tab title="Method 1. Annotation processing">
@@ -70,6 +70,7 @@ the same package as file containing the annotation.
7070
)
7171

7272
import org.jetbrains.kotlinx.dataframe.annotations.ImportDataSchema
73+
import org.jetbrains.kotlinx.dataframe.api.*
7374
```
7475

7576
See KDocs for `@ImportDataSchema` in IDE
@@ -98,7 +99,7 @@ See [reference](gradleReference.md) and [examples](gradleReference.md#examples)
9899
</tab>
99100
</tabs>
100101

101-
After `build`, the following code should compile and run:
102+
After `assemble`, the following code should compile and run:
102103

103104
<!---FUN useInferredSchema-->
104105

docs/StardustDocs/v.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE vars SYSTEM "https://helpserver.labs.jb.gg/help/schemas/mvp/vars.dtd">
33
<vars>
4-
<var name="dataFrameVersion" value="0.9.1" type="string"/>
4+
<var name="dataFrameVersion" value="0.10.0" type="string"/>
55
</vars>

0 commit comments

Comments
 (0)