Skip to content

Commit ef3d510

Browse files
update readme
1 parent ad2c10e commit ef3d510

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ You could find the following articles there:
6363

6464
### What's new
6565

66-
1.0.0-Beta3: [Release notes](https://github.com/Kotlin/dataframe/releases/tag/v1.0.0-Beta3)
66+
1.0.0-Beta4: [Release notes](https://github.com/Kotlin/dataframe/releases/tag/v1.0.0-Beta4)
6767

6868
Check out this [notebook with new features](examples/notebooks/feature_overviews/0.15/new_features.ipynb) in v0.15.
6969

@@ -96,9 +96,22 @@ to get the latest stable version without updating the Kotlin kernel:
9696
Or manually specify the version:
9797

9898
```
99-
%use dataframe($dataframe_version)
99+
%use dataframe(1.0.0-Beta4n)
100100
```
101101

102+
> [!WARNING]
103+
> Please, use `0.16.0-736` Kotlin Jupyter Kernel version or higher for descriptor compatibility
104+
>
105+
> Use specified `1.0.0-Beta4n` version in Kotlin Notebook.
106+
> Due to [an known issue](https://github.com/Kotlin/dataframe/issues/1116),
107+
> common `dataframe:1.0.0-Beta4` version works incorrectly in Notebook.
108+
>
109+
> If you use [`kandy`](https://github.com/Kotlin/kandy) in your notebook, add it after the `dataframe`:
110+
> ```kotlin
111+
> %useLatestDescriptors
112+
> %use dataframe, kandy
113+
> ```
114+
102115
Refer to the
103116
[Get started with Kotlin DataFrame in Kotlin Notebook](https://kotlin.github.io/dataframe/gettingstartedkotlinnotebook.html)
104117
for details.
@@ -109,7 +122,7 @@ Add dependencies in the build.gradle.kts script:
109122
110123
```kotlin
111124
dependencies {
112-
implementation("org.jetbrains.kotlinx:dataframe:1.0.0-Beta3")
125+
implementation("org.jetbrains.kotlinx:dataframe:1.0.0-Beta4")
113126
}
114127
```
115128
@@ -200,6 +213,8 @@ other recommended versions.
200213
| 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-66 |
201214
| 1.0.0-Beta3n (notebooks) | 8 / 11 | 2.2.20 | 0.15.0-587 (K1 only) | 18.3.0 | - | 0.8.1n |
202215
| 1.0.0-Beta3 | 8 / 11 | 2.2.20 | 0.15.0-587 | 18.3.0 | 2.2.20 / IDEA 2025.2+ | 0.8.1 |
216+
| 1.0.0-Beta4n (notebooks) | 8 / 11 | 2.2.21 | 0.16.0-736 (K1 only) | 18.3.0 | - | 0.8.3 |
217+
| 1.0.0-Beta4 | 8 / 11 | 2.2.21 | 0.16.0-736 | 18.3.0 | 2.2.21 / IDEA 2025.2+ | 0.8.3 |
203218
204219
## Code of Conduct
205220

0 commit comments

Comments
 (0)