Skip to content

post-0.15 release documentation version bumps #983

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
ALGOLIA_INDEX_NAME: prod_DATAFRAME_HELP
ALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }}
CONFIG_JSON_PRODUCT: Dataframe
CONFIG_JSON_VERSION: '0.14'
CONFIG_JSON_VERSION: '0.15'

jobs:
build-job:
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ Here's a [compiler plugin demo project](https://github.com/koperagen/df-plugin-d
## Setup

```kotlin
implementation("org.jetbrains.kotlinx:dataframe:0.14.1")
implementation("org.jetbrains.kotlinx:dataframe:0.15.0")
```

Optional Gradle plugin for enhanced type safety and schema generation
https://kotlin.github.io/dataframe/schemasgradle.html
```kotlin
id("org.jetbrains.kotlinx.dataframe") version "0.14.1"
id("org.jetbrains.kotlinx.dataframe") version "0.15.0"
```

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

Requires Gradle plugin to work
```kotlin
id("org.jetbrains.kotlinx.dataframe") version "0.14.1"
id("org.jetbrains.kotlinx.dataframe") version "0.15.0"
```

Plugin generates extension properties API for provided sample of data. Column names and their types become discoverable in completion.
Expand Down Expand Up @@ -229,6 +229,7 @@ This table shows the mapping between main library component versions and minimum
| 0.12.1 | 8 | 1.9.0 | 0.11.0-358 | 3.0.0 | 11.0.0 |
| 0.13.1 | 8 | 1.9.22 | 0.12.0-139 | 3.0.0 | 15.0.0 |
| 0.14.1 | 8 | 2.0.20 | 0.12.0-139 | 3.0.0 | 17.0.0 |
| 0.15.0 | 8 | 2.0.20 | 0.12.0-139 | 3.0.0 | 18.1.0 |

## Code of Conduct

Expand Down
6 changes: 3 additions & 3 deletions docs/StardustDocs/project.ihp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<ihp version="2.0">
<categories src="c.list"/>
<topics dir="topics"/>
<images dir="images" version="0.14" web-path="images/" />
<snippets dir="snippets" version="0.14" web-path="snippets/" />
<images dir="images" version="0.15" web-path="images/" />
<snippets dir="snippets" version="0.15" web-path="snippets/" />
<vars src="v.list"/>
<instance src="d.tree" version="0.14" id="dataframe"/>
<instance src="d.tree" version="0.15" id="dataframe"/>
<settings>
<default-property element-name="chapter" property-name="show-structure-depth" value="2"/>
</settings>
Expand Down
2 changes: 1 addition & 1 deletion docs/StardustDocs/v.list
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE vars SYSTEM "https://resources.jetbrains.com/writerside/1.0/vars.dtd">
<vars>
<var name="dataFrameVersion" value="0.14.1" type="string"/>
<var name="dataFrameVersion" value="0.15.0" type="string"/>
</vars>
Loading