Skip to content

Commit

Permalink
Merge pull request #178 from JetBrains-Research/update-version
Browse files Browse the repository at this point in the history
JBAI-3621 [RELEASE] Update version to 0.2.19
  • Loading branch information
cupertank authored Apr 22, 2024
2 parents 13e4602 + 5946bd7 commit a512daa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ it is highly recommended to use KInference TensorFlow.js backend instead for mor
KInference Core dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-core", "0.2.18")
api("io.kinference", "inference-core", "0.2.19")
}
```

Expand All @@ -67,7 +67,7 @@ This backend is recommended for JavaScript projects.
TensorFlow.js backend dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-tfjs", "0.2.18")
api("io.kinference", "inference-tfjs", "0.2.19")
}
```

Expand All @@ -81,14 +81,14 @@ To check on the system requirements, visit the following [link](https://onnxrunt
ONNXRuntime CPU backend dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-ort", "0.2.18")
api("io.kinference", "inference-ort", "0.2.19")
}
```

ONNXRuntime GPU backend dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-ort-gpu", "0.2.18")
api("io.kinference", "inference-ort-gpu", "0.2.19")
}
```

Expand All @@ -104,7 +104,7 @@ Array adapter for the [kmath](https://github.com/SciProgCentre/kmath) library th
Dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "adapter-kmath-{backend_name}", "0.2.18")
api("io.kinference", "adapter-kmath-{backend_name}", "0.2.19")
}
```

Expand All @@ -114,12 +114,12 @@ Array adapter for the [multik](https://github.com/Kotlin/multik) library that wo
Dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "adapter-multik-{backend_name}", "0.2.18")
api("io.kinference", "adapter-multik-{backend_name}", "0.2.19")
}
```

## Getting started
Let us now walk through how to get started with KInference. The latest version of KInference is *0.2.18*
Let us now walk through how to get started with KInference. The latest version of KInference is *0.2.19*

### Setup dependencies repository

Expand All @@ -142,7 +142,7 @@ To enable the backend, you can add the chosen KInference runtime as a dependency

```kotlin
dependencies {
api("io.kinference", "inference-core", "0.2.18")
api("io.kinference", "inference-core", "0.2.19")
}
```

Expand All @@ -160,20 +160,20 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api("io.kinference:inference-api:0.2.18")
api("io.kinference:ndarray-api:0.2.18")
api("io.kinference:inference-api:0.2.19")
api("io.kinference:ndarray-api:0.2.19")
}
}

val jvmMain by getting {
dependencies {
api("io.kinference:inference-core:0.2.18")
api("io.kinference:inference-core:0.2.19")
}
}

val jsMain by getting {
dependencies {
api("io.kinference:inference-tfjs:0.2.18")
api("io.kinference:inference-tfjs:0.2.19")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile

group = "io.kinference"
version = "0.2.18"
version = "0.2.19"

plugins {
kotlin("multiplatform") apply false
Expand Down

0 comments on commit a512daa

Please sign in to comment.