Skip to content

Commit

Permalink
Version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Aug 14, 2024
1 parent ce9719b commit 2ed744a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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")
}
}
}
Expand All @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sweetspi-gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion sweetspi-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2ed744a

Please sign in to comment.