diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ef2cb1..c1dd5b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 0.1.1 + +> Published 14 Aug 2024 + +* Implement optimization for Android with R8 ([#1](https://github.com/whyoleg/sweet-spi/issues/1)) + ## 0.1.0 — First release > Published 11 Aug 2024 diff --git a/README.md b/README.md index a594814..c4b5eb9 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ plugins { // apply KSP, don't worry, Gradle Plugin will warn if you've forgotten id("com.google.devtools.ksp") version "2.0.0-1.0.24" // finally, apply `sweetspi` Gradle Plugin - id("dev.whyoleg.sweetspi") version "0.1.0" + id("dev.whyoleg.sweetspi") version "0.1.1" } kotlin { @@ -125,7 +125,7 @@ kotlin { sourceSets { commonMain.dependencies { // add runtime - implementation("dev.whyoleg.sweetspi:sweetspi-runtime:0.1.0") + implementation("dev.whyoleg.sweetspi:sweetspi-runtime:0.1.1") } } } @@ -134,15 +134,15 @@ dependencies { // Note: `ksp` configuration should be used only for jvm projects // it's deprecated and will be removed in KSP 2.0 // https://kotlinlang.org/docs/ksp-multiplatform.html#avoid-the-ksp-configuration-on-ksp-1-0-1 - ksp("dev.whyoleg.sweetspi:sweetspi-processor:0.1.0") + ksp("dev.whyoleg.sweetspi:sweetspi-processor:0.1.1") // the correct way will be to apply to each target individually, // Note: no need to add it to the `common` compilations, as it'd do nothing there - add("kspJvm", "dev.whyoleg.sweetspi:sweetspi-processor:0.1.0") + add("kspJvm", "dev.whyoleg.sweetspi:sweetspi-processor:0.1.1") // if needed, `test` source sets support - add("kspJvmTest", "dev.whyoleg.sweetspi:sweetspi-processor:0.1.0") + add("kspJvmTest", "dev.whyoleg.sweetspi:sweetspi-processor:0.1.1") // and for each other Kotlin target... - add("kspLinuxX64Test", "dev.whyoleg.sweetspi:sweetspi-processor:0.1.0") + add("kspLinuxX64Test", "dev.whyoleg.sweetspi:sweetspi-processor:0.1.1") } ``` diff --git a/gradle.properties b/gradle.properties index d492f5c..1daa5a1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ # group=dev.whyoleg.sweetspi -version=0.1.0 +version=0.1.1 #Kotlin kotlin.mpp.import.enableKgpDependencyResolution=true kotlin.mpp.enableCInteropCommonization=true diff --git a/sweetspi-gradle-plugin/README.md b/sweetspi-gradle-plugin/README.md index 6acc205..effb2cd 100644 --- a/sweetspi-gradle-plugin/README.md +++ b/sweetspi-gradle-plugin/README.md @@ -43,7 +43,7 @@ plugins { // apply KSP, don't worry, Gradle Plugin will warn if you've forgotten id("com.google.devtools.ksp") version "2.0.0-1.0.24" // finally, apply `sweetspi` Gradle Plugin - id("dev.whyoleg.sweetspi") version "0.1.0" + id("dev.whyoleg.sweetspi") version "0.1.1" } kotlin { diff --git a/sweetspi-runtime/README.md b/sweetspi-runtime/README.md index e5857c3..29df9d4 100644 --- a/sweetspi-runtime/README.md +++ b/sweetspi-runtime/README.md @@ -43,7 +43,7 @@ plugins { // apply KSP, don't worry, Gradle Plugin will warn if you've forgotten id("com.google.devtools.ksp") version "2.0.0-1.0.24" // finally, apply `sweetspi` Gradle Plugin - id("dev.whyoleg.sweetspi") version "0.1.0" + id("dev.whyoleg.sweetspi") version "0.1.1" } kotlin {