Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
joelkanyi committed Jul 29, 2024
1 parent f6be460 commit a64049b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("io.github.joelkanyi:sain:2.0.3")
implementation("io.github.joelkanyi:sain:<latest-version>")
}
}
}
Expand All @@ -23,14 +23,14 @@ kotlin {
#### In Android projects, add the dependency to your dependencies block in your app's build.gradle file:
```kotlin
dependencies {
implementation("io.github.joelkanyi:sain:2.0.3")
implementation("io.github.joelkanyi:sain:<latest-version>")
}
```

#### For those using Gradle Version Catalog, you can add the dependency as follows:
```libs.version.toml
[versions]
sain = "2.0.3"
sain = "<latest-version>"

[libraries]
sain = { module = "io.github.joelkanyi:sain", version.ref = "sain" }
Expand All @@ -42,4 +42,4 @@ dependencies {
implementation(libs.sain)
}
```
</br>
</br>
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("io.github.joelkanyi:sain:2.0.3")
implementation("io.github.joelkanyi:sain:<latest-version>")
}
}
}
Expand All @@ -28,14 +28,14 @@ kotlin {
#### In Android projects, add the dependency to your dependencies block in your app's build.gradle file:
```kotlin
dependencies {
implementation("io.github.joelkanyi:sain:2.0.3")
implementation("io.github.joelkanyi:sain:<latest-version>")
}
```

#### For those using Gradle Version Catalog, you can add the dependency as follows:
```libs.version.toml
[versions]
sain = "2.0.3"
sain = "<latest-version>"

[libraries]
sain = { module = "io.github.joelkanyi:sain", version.ref = "sain" }
Expand Down

0 comments on commit a64049b

Please sign in to comment.