Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mahozad committed Dec 17, 2023
1 parent 644735a commit bc5294b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ For a single-platform project (Android or IOS or Desktop or JS):

```kotlin
dependencies {
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.3.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.4.0")
}
```

Expand All @@ -40,7 +40,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.3.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.4.0")
}
// ...
```
Expand All @@ -52,11 +52,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.3.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.4.0")
}
}
androidMain.dependencies {
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.3.0")
implementation/* OR api */("ir.mahozad.multiplatform:wavy-slider:0.4.0")
}
// etc.
```
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
}

group = "ir.mahozad.multiplatform"
version = "0.3.0"
version = "0.4.0"

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

0 comments on commit bc5294b

Please sign in to comment.