Skip to content

Commit

Permalink
Release version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mahozad committed Jan 20, 2024
1 parent 5fd4bca commit 7c7c344
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -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.6.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.7.0")
}
```

Expand All @@ -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.6.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.7.0")
}
// ...
```
Expand All @@ -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.6.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.7.0")
}
}
androidMain.dependencies {
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.6.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.7.0")
}
// etc.
```
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle.kts
Expand Up @@ -21,7 +21,7 @@ buildscript {
}

group = "ir.mahozad.multiplatform"
version = "0.6.0"
version = "0.7.0"

// See https://central.sonatype.com/namespace/org.jetbrains.compose.material
// for the targets that Compose Multiplatform supports
Expand Down

0 comments on commit 7c7c344

Please sign in to comment.