diff --git a/README.md b/README.md index d2e62cf..a9ed823 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ For a single-platform project (Android or iOS or Desktop or JS): ```kotlin dependencies { - implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.10.0") + implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:1.0.0-rc") } ``` @@ -42,7 +42,7 @@ For a multiplatform project (if you target a subset of the library supported pla kotlin { sourceSets { commonMain.dependencies { - implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.10.0") + implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:1.0.0-rc") } // ... ``` @@ -54,11 +54,11 @@ add the library separately to each supported target: kotlin { val desktopMain /* OR jvmMain */ by getting { dependencies { - implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.10.0") + implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:1.0.0-rc") } } androidMain.dependencies { - implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.10.0") + implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:1.0.0-rc") } // etc. ``` @@ -98,4 +98,4 @@ fun MyComposable() { [Latest Maven Central release]: https://img.shields.io/maven-central/v/ir.mahozad.multiplatform/wavy-slider?label=Maven%20Central&labelColor=303030&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE2IDE2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxkZWZzPgogICAgPHN0eWxlPi5he2ZpbGw6bm9uZTt9LmJ7Y2xpcC1wYXRoOnVybCgjYSk7fS5je2ZpbGw6I2ZmZjt9PC9zdHlsZT4KICAgIDxjbGlwUGF0aCBpZD0iYSI+CiAgICAgIDxyZWN0IGNsYXNzPSJhIiB4PSIxNC43IiB5PSIxMSIgd2lkdGg9IjE3MSIgaGVpZ2h0PSIxNTEiLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXBQYXRoMTMiPgogICAgICA8cmVjdCBjbGFzcz0iYSIgeD0iMTQuNyIgeT0iMTEiIHdpZHRoPSIxNzEiIGhlaWdodD0iMTUxIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8cGF0aCBjbGFzcz0iYyIgdHJhbnNmb3JtPSJtYXRyaXgoLjE2NCAwIDAgLjE2NCAtOC4zNyAtMS44MSkiIGQ9Im0xMDAgMTEtNDIuMyAyNC40djQ4LjlsNDIuMyAyNC40IDQyLjMtMjQuNHYtNDguOXptMzAuMiA2Ni4zLTMwLjIgMTcuNC0zMC4yLTE3LjR2LTM0LjlsMzAuMi0xNy40IDMwLjIgMTcuNHoiIGNsaXAtcGF0aD0idXJsKCNjbGlwUGF0aDEzKSIvPgo8L3N2Zz4K [Kotlin release]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.22 [Compose Multiplatform release]: https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.5.12 -[Library on Maven Central]: https://repo1.maven.org/maven2/ir/mahozad/multiplatform/wavy-slider/0.10.0/ +[Library on Maven Central]: https://repo1.maven.org/maven2/ir/mahozad/multiplatform/wavy-slider/1.0.0-rc/ diff --git a/library/build.gradle.kts b/library/build.gradle.kts index dc033cd..25b0a22 100644 --- a/library/build.gradle.kts +++ b/library/build.gradle.kts @@ -22,7 +22,7 @@ buildscript { } group = "ir.mahozad.multiplatform" -version = "0.10.0" +version = "1.0.0-rc" // See https://central.sonatype.com/namespace/org.jetbrains.compose.material // for the targets that Compose Multiplatform supports