Skip to content

Commit 8f2942b

Browse files
committed
updating bootstrap version of df to 0.13.1 and setting readme/website references to 0.13.1
1 parent 5064eaf commit 8f2942b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
ALGOLIA_INDEX_NAME: prod_DATAFRAME_HELP
1818
ALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }}
1919
CONFIG_JSON_PRODUCT: Dataframe
20-
CONFIG_JSON_VERSION: '0.12'
20+
CONFIG_JSON_VERSION: '0.13'
2121

2222
jobs:
2323
build-job:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ You could find the following articles there:
3838
## Setup
3939

4040
```kotlin
41-
implementation("org.jetbrains.kotlinx:dataframe:0.12.1")
41+
implementation("org.jetbrains.kotlinx:dataframe:0.13.1")
4242
```
4343

4444
Optional Gradle plugin for enhanced type safety and schema generation
4545
https://kotlin.github.io/dataframe/schemasgradle.html
4646
```kotlin
47-
id("org.jetbrains.kotlinx.dataframe") version "0.12.1"
47+
id("org.jetbrains.kotlinx.dataframe") version "0.13.1"
4848
```
4949

5050
Check out the [custom setup page](https://kotlin.github.io/dataframe/gettingstartedgradleadvanced.html) if you don't need some of the formats as dependencies,
@@ -69,7 +69,7 @@ df.filter { "stargazers_count"<Int>() > 50 }.print()
6969

7070
Requires Gradle plugin to work
7171
```kotlin
72-
id("org.jetbrains.kotlinx.dataframe") version "0.12.1"
72+
id("org.jetbrains.kotlinx.dataframe") version "0.13.1"
7373
```
7474

7575
Plugin generates extension properties API for provided sample of data. Column names and their types become discoverable in completion.
@@ -219,7 +219,7 @@ This table shows the mapping between main library component versions and minimum
219219
| 0.11.1 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
220220
| 0.12.0 | 8 | 1.9.0 | 0.11.0-358 | 3.0.0 | 11.0.0 |
221221
| 0.12.1 | 8 | 1.9.0 | 0.11.0-358 | 3.0.0 | 11.0.0 |
222-
222+
| 0.13.1 | 8 | 1.9.22 | 0.12.0-139 | 3.0.0 | 15.0.0 |
223223

224224
## Code of Conduct
225225

docs/StardustDocs/project.ihp

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

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://resources.jetbrains.com/writerside/1.0/vars.dtd">
33
<vars>
4-
<var name="dataFrameVersion" value="0.12.1" type="string"/>
4+
<var name="dataFrameVersion" value="0.13.1" type="string"/>
55
</vars>

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ libsPublisher = "1.8.10-dev-43"
1515

1616
# "Bootstrap" version of the dataframe, used in the build itself to generate @DataSchema APIs,
1717
# dogfood Gradle / KSP plugins in tests and idea-examples modules
18-
dataframe = "0.13.1-RC1"
18+
dataframe = "0.13.1"
1919

2020
# TODO 0.1.6 breaks ktlint, https://github.com/Kotlin/dataframe/issues/598
2121
korro = "0.1.5"

0 commit comments

Comments
 (0)