From a64049bbf19b1b6ed77f729ddd3cc31a2bfd5e60 Mon Sep 17 00:00:00 2001 From: Joel Kanyi Date: Mon, 29 Jul 2024 07:21:25 +0300 Subject: [PATCH] update docs --- docs/get-started.md | 8 ++++---- docs/index.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/get-started.md b/docs/get-started.md index e2484abf..39b7f9e0 100644 --- a/docs/get-started.md +++ b/docs/get-started.md @@ -13,7 +13,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("io.github.joelkanyi:sain:2.0.3") + implementation("io.github.joelkanyi:sain:") } } } @@ -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:") } ``` #### For those using Gradle Version Catalog, you can add the dependency as follows: ```libs.version.toml [versions] -sain = "2.0.3" +sain = "" [libraries] sain = { module = "io.github.joelkanyi:sain", version.ref = "sain" } @@ -42,4 +42,4 @@ dependencies { implementation(libs.sain) } ``` -
\ No newline at end of file +
diff --git a/docs/index.md b/docs/index.md index cf470a6b..b830534b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,7 +18,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("io.github.joelkanyi:sain:2.0.3") + implementation("io.github.joelkanyi:sain:") } } } @@ -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:") } ``` #### For those using Gradle Version Catalog, you can add the dependency as follows: ```libs.version.toml [versions] -sain = "2.0.3" +sain = "" [libraries] sain = { module = "io.github.joelkanyi:sain", version.ref = "sain" }