Skip to content

Commit ffe9ecd

Browse files
committed
Released 0.11
1 parent 8c23189 commit ffe9ecd

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/main.yml

+1-1
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.10'
18+
CONFIG_JSON_VERSION: '0.11'
1919

2020
jobs:
2121
build-job:

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ Explore [**documentation**](https://kotlin.github.io/dataframe/overview.html) fo
3030
plugins {
3131
// Optional Gradle plugin for enhanced type safety and schema generation
3232
// https://kotlin.github.io/dataframe/gradle.html
33-
id 'org.jetbrains.kotlinx.dataframe' version '0.10.1'
33+
id 'org.jetbrains.kotlinx.dataframe' version '0.11.0'
3434
}
3535
3636
repositories {
3737
mavenCentral()
3838
}
3939
4040
dependencies {
41-
implementation 'org.jetbrains.kotlinx:dataframe:0.10.1'
41+
implementation 'org.jetbrains.kotlinx:dataframe:0.11.0'
4242
}
4343
```
4444

@@ -48,15 +48,15 @@ dependencies {
4848
plugins {
4949
// Optional Gradle plugin for enhanced type safety and schema generation
5050
// https://kotlin.github.io/dataframe/gradle.html
51-
id("org.jetbrains.kotlinx.dataframe") version "0.10.1"
51+
id("org.jetbrains.kotlinx.dataframe") version "0.11.0"
5252
}
5353

5454
repositories {
5555
mavenCentral()
5656
}
5757

5858
dependencies {
59-
implementation("org.jetbrains.kotlinx:dataframe:0.10.1")
59+
implementation("org.jetbrains.kotlinx:dataframe:0.11.0")
6060
}
6161
```
6262

@@ -67,11 +67,11 @@ dependencies {
6767
plugins {
6868
// Optional Gradle plugin for enhanced type safety and schema generation
6969
// https://kotlin.github.io/dataframe/gradle.html
70-
id 'org.jetbrains.kotlinx.dataframe' version '0.10.1'
70+
id 'org.jetbrains.kotlinx.dataframe' version '0.11.0'
7171
}
7272
7373
dependencies {
74-
implementation 'org.jetbrains.kotlinx:dataframe:0.10.1'
74+
implementation 'org.jetbrains.kotlinx:dataframe:0.11.0'
7575
}
7676
7777
android {
@@ -115,11 +115,11 @@ tasks.withType(KotlinCompile).configureEach {
115115
plugins {
116116
// Optional Gradle plugin for enhanced type safety and schema generation
117117
// https://kotlin.github.io/dataframe/gradle.html
118-
id("org.jetbrains.kotlinx.dataframe") version "0.10.1"
118+
id("org.jetbrains.kotlinx.dataframe") version "0.11.0"
119119
}
120120

121121
dependencies {
122-
implementation("org.jetbrains.kotlinx:dataframe:0.10.1")
122+
implementation("org.jetbrains.kotlinx:dataframe:0.11.0")
123123
}
124124

125125
android {
@@ -186,9 +186,9 @@ This table shows the mapping between main library component versions and minimum
186186

187187
| Kotlin DataFrame Version | Minimum Java Version | Kotlin Version | Kotlin Jupyter Version | OpenAPI version | Apache Arrow version |
188188
|--------------------------|----------------------|----------------|------------------------|-----------------|----------------------|
189-
| 0.10.0 | 8 |1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
190-
| 0.10.1 | 8 |1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
191-
189+
| 0.10.0 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
190+
| 0.10.1 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
191+
| 0.11.0 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
192192
## Usage example
193193

194194
**Create:**

docs/StardustDocs/v.list

+1-1
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.10.0" type="string"/>
4+
<var name="dataFrameVersion" value="0.11.0" type="string"/>
55
</vars>

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dokka = "1.8.10"
77
libsPublisher = "0.0.60-dev-30"
88
# "Bootstrap" version of the dataframe, used in the build itself to generate @DataSchema APIs,
99
# dogfood Gradle / KSP plugins in tests and idea-examples modules
10-
dataframe = "0.10.0"
10+
dataframe = "0.11.0"
1111
korro = "0.1.5"
1212
kover = "0.6.0-Beta"
1313

0 commit comments

Comments
 (0)