@@ -54,7 +54,7 @@ You could find the following articles there:
54
54
55
55
### What's new
56
56
57
- 1.0.0-Beta2 : [ Release notes] ( https://github.com/Kotlin/dataframe/releases/tag/v1.0.0-Beta2 )
57
+ 1.0.0-Beta3 : [ Release notes] ( https://github.com/Kotlin/dataframe/releases/tag/v1.0.0-Beta3 )
58
58
59
59
Check out this [ notebook with new features] ( examples/notebooks/feature_overviews/0.15/new_features.ipynb ) in v0.15.
60
60
@@ -100,7 +100,7 @@ Add dependencies in the build.gradle.kts script:
100
100
101
101
``` kotlin
102
102
dependencies {
103
- implementation(" org.jetbrains.kotlinx:dataframe:1.0.0-Beta2 " )
103
+ implementation(" org.jetbrains.kotlinx:dataframe:1.0.0-Beta3 " )
104
104
}
105
105
```
106
106
@@ -124,7 +124,7 @@ for Groovy, and for configurations specific to Android projects.
124
124
This example of Kotlin DataFrame code with
125
125
the [ Compiler Plugin] ( https://kotlin.github.io/dataframe/compiler-plugin.html ) enabled.
126
126
See [ the full project] ( https://github.com/Kotlin/dataframe/tree/master/examples/kotlin-dataframe-plugin-example ) .
127
- See also
127
+ See also
128
128
[ this example in Kotlin Notebook] ( https://github.com/Kotlin/dataframe/tree/master/examples/notebooks/readme_example.ipynb ) .
129
129
130
130
``` kotlin
@@ -175,18 +175,19 @@ for your dataframes.
175
175
176
176
This table shows the mapping between main library component versions and minimum supported Java versions.
177
177
178
- | Kotlin DataFrame Version | Minimum Java Version | Kotlin Version | Kotlin Jupyter Version | Apache Arrow version |
179
- | --------------------------| ----------------------| ----------------| ------------------------| ----------------------|
180
- | 0.10.0 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 |
181
- | 0.10.1 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 |
182
- | 0.11.0 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 |
183
- | 0.11.1 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 |
184
- | 0.12.0 | 8 | 1.9.0 | 0.11.0-358 | 11.0.0 |
185
- | 0.12.1 | 8 | 1.9.0 | 0.11.0-358 | 11.0.0 |
186
- | 0.13.1 | 8 | 1.9.22 | 0.12.0-139 | 15.0.0 |
187
- | 0.14.1 | 8 | 2.0.20 | 0.12.0-139 | 17.0.0 |
188
- | 0.15.0 | 8 | 2.0.20 | 0.12.0-139 | 18.1.0 |
189
- | 1.0.0-Beta2 | 8 / 11 | 2.0.20 | 0.12.0-383 | 18.1.0 |
178
+ | Kotlin DataFrame Version | Minimum Java Version | Kotlin Version | Kotlin Jupyter Version | Apache Arrow Version | Compiler Plugin Version | Compatible Kandy version |
179
+ | --------------------------| ----------------------| ----------------| ------------------------| ----------------------| -------------------------| --------------------------|
180
+ | 0.10.0 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 | | |
181
+ | 0.10.1 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 | | |
182
+ | 0.11.0 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 | | |
183
+ | 0.11.1 | 8 | 1.8.20 | 0.11.0-358 | 11.0.0 | | |
184
+ | 0.12.0 | 8 | 1.9.0 | 0.11.0-358 | 11.0.0 | | |
185
+ | 0.12.1 | 8 | 1.9.0 | 0.11.0-358 | 11.0.0 | | |
186
+ | 0.13.1 | 8 | 1.9.22 | 0.12.0-139 | 15.0.0 | | |
187
+ | 0.14.1 | 8 | 2.0.20 | 0.12.0-139 | 17.0.0 | | |
188
+ | 0.15.0 | 8 | 2.0.20 | 0.12.0-139 | 18.1.0 | | 0.8.0 |
189
+ | 1.0.0-Beta2 | 8 / 11 | 2.0.20 | 0.12.0-383 | 18.1.0 | 2.2.20-dev-3524 | 0.8.1-dev |
190
+ | 1.0.0-Beta3 | 8 / 11 | 2.2.20 | 0.15.0-587 | 18.3.0 | 2.2.20 | TODO |
190
191
191
192
## Code of Conduct
192
193
0 commit comments