Skip to content

Commit

Permalink
Released 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
zaleslaw committed Jun 23, 2023
1 parent 8c23189 commit ffe9ecd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
ALGOLIA_INDEX_NAME: prod_DATAFRAME_HELP
ALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }}
CONFIG_JSON_PRODUCT: Dataframe
CONFIG_JSON_VERSION: '0.10'
CONFIG_JSON_VERSION: '0.11'

jobs:
build-job:
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ Explore [**documentation**](https://kotlin.github.io/dataframe/overview.html) fo
plugins {
// Optional Gradle plugin for enhanced type safety and schema generation
// https://kotlin.github.io/dataframe/gradle.html
id 'org.jetbrains.kotlinx.dataframe' version '0.10.1'
id 'org.jetbrains.kotlinx.dataframe' version '0.11.0'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.kotlinx:dataframe:0.10.1'
implementation 'org.jetbrains.kotlinx:dataframe:0.11.0'
}
```

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

repositories {
mavenCentral()
}

dependencies {
implementation("org.jetbrains.kotlinx:dataframe:0.10.1")
implementation("org.jetbrains.kotlinx:dataframe:0.11.0")
}
```

Expand All @@ -67,11 +67,11 @@ dependencies {
plugins {
// Optional Gradle plugin for enhanced type safety and schema generation
// https://kotlin.github.io/dataframe/gradle.html
id 'org.jetbrains.kotlinx.dataframe' version '0.10.1'
id 'org.jetbrains.kotlinx.dataframe' version '0.11.0'
}
dependencies {
implementation 'org.jetbrains.kotlinx:dataframe:0.10.1'
implementation 'org.jetbrains.kotlinx:dataframe:0.11.0'
}
android {
Expand Down Expand Up @@ -115,11 +115,11 @@ tasks.withType(KotlinCompile).configureEach {
plugins {
// Optional Gradle plugin for enhanced type safety and schema generation
// https://kotlin.github.io/dataframe/gradle.html
id("org.jetbrains.kotlinx.dataframe") version "0.10.1"
id("org.jetbrains.kotlinx.dataframe") version "0.11.0"
}

dependencies {
implementation("org.jetbrains.kotlinx:dataframe:0.10.1")
implementation("org.jetbrains.kotlinx:dataframe:0.11.0")
}

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

| Kotlin DataFrame Version | Minimum Java Version | Kotlin Version | Kotlin Jupyter Version | OpenAPI version | Apache Arrow version |
|--------------------------|----------------------|----------------|------------------------|-----------------|----------------------|
| 0.10.0 | 8 |1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
| 0.10.1 | 8 |1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |

| 0.10.0 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
| 0.10.1 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
| 0.11.0 | 8 | 1.8.20 | 0.11.0-358 | 3.0.0 | 11.0.0 |
## Usage example

**Create:**
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://helpserver.labs.jb.gg/help/schemas/mvp/vars.dtd">
<vars>
<var name="dataFrameVersion" value="0.10.0" type="string"/>
<var name="dataFrameVersion" value="0.11.0" type="string"/>
</vars>
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dokka = "1.8.10"
libsPublisher = "0.0.60-dev-30"
# "Bootstrap" version of the dataframe, used in the build itself to generate @DataSchema APIs,
# dogfood Gradle / KSP plugins in tests and idea-examples modules
dataframe = "0.10.0"
dataframe = "0.11.0"
korro = "0.1.5"
kover = "0.6.0-Beta"

Expand Down

0 comments on commit ffe9ecd

Please sign in to comment.