Skip to content

Commit

Permalink
Release 0.4.1, upddate README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CarsonRedeye committed Jun 3, 2021
1 parent a8a4849 commit dc6dfe9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the common dependency which will work for both android and desktop.
sourceSets {
named("commonMain") {
dependencies {
implementation("io.github.chozzle:compose-macos-theme:0.3.1")
implementation("io.github.chozzle:compose-macos-theme:0.4.1")
}
}
}
Expand All @@ -36,7 +36,7 @@ kotlin {
named("jvmMain") {
dependencies {
implementation(compose.desktop.currentOs)
implementation("io.github.chozzle:compose-macos-theme-desktop:0.3.1")
implementation("io.github.chozzle:compose-macos-theme-desktop:0.4.1")
}
}
}
Expand All @@ -47,7 +47,7 @@ kotlin {
Do not specify android specifically (it won't work). Gradle will automatically import the android sourceset only.
```kotlin
dependencies {
implementation("io.github.chozzle:compose-macos-theme:0.3.1 ")
implementation("io.github.chozzle:compose-macos-theme:0.4.1 ")
}
```

Expand Down
6 changes: 1 addition & 5 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ android {
}

dependencies {
implementation(project(":compose-native-theme"))

// These are redundant, because native-theme depends on them
implementation(project(":compose-macos-theme"))
implementation(project(":compose-windows-theme"))
implementation("io.github.chozzle:compose-macos-theme:0.4.1")

implementation("androidx.appcompat:appcompat:1.3.0-beta01")
// See https://stackoverflow.com/a/66146595/4672107
Expand Down
2 changes: 1 addition & 1 deletion compose-macos-theme/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
id("signing")
}

version = "0.4.0"
Reversion = "0.4.1"
group = "io.github.chozzle"

kotlin {
Expand Down

0 comments on commit dc6dfe9

Please sign in to comment.