Skip to content

Commit

Permalink
release: 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
2BAB committed Mar 27, 2023
1 parent f206636 commit ddd88de
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
GH_DEV_TOKEN: ${{ secrets.GH_DEV_TOKEN }}

- name: Upload Github Artifacts
uses: actions/upload-artifact@v2
with:
name: artifacts
path: Caliper/build/libs/
# - name: Upload Github Artifacts
# uses: actions/upload-artifact@v2
# with:
# name: artifacts
# path: ./build/libs/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Caliper is only supported & tested on latest 2 Minor versions of Android Gradle

| AGP Version | Recommended Gradle Version | Compiled Kotlin Version | Compiled Kotlin Version | Latest Support Version |
|:-----------:|:--------------------------:|:-----------------------:|:----------------------------:|:----------------------:|
| 8.0.x | 8.0.2+ | 1.7.22 | 1.7.22-1.0.8 | 0.2.1 |
| 8.0.x | 8.0.2+ | 1.7.22 | 1.7.22-1.0.8 | 0.2.2 |


## Git Commit Check
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/BuildConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object BuildConfig {
}

object Versions {
const val caliperVersion = "0.2.0"
const val caliperVersion = "0.2.2"
}

}
8 changes: 4 additions & 4 deletions integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pluginManagement {
plugins {
...
id("com.google.devtools.ksp") version "1.7.22-1.0.8" apply false
id("me.2bab.caliper") version "0.2.1" apply false
id("me.2bab.caliper") version "0.2.2" apply false
}
}

Expand All @@ -28,7 +28,7 @@ buildscript {
dependencies {
...
classpath("com.google.devtools.ksp:symbol-processing-gradle-plugin:1.7.22-1.0.8")
classpath("me.2bab:caliper-gradle-plugin:0.2.1")
classpath("me.2bab:caliper-gradle-plugin:0.2.2")
}
}
```
Expand All @@ -38,8 +38,7 @@ buildscript {
``` kotlin
plugins {
id("com.android.application")
...
id("com.google.devtools.ksp") // Apply the KSP plugin ahead of Caliper
...
id("me.2bab.caliper")
}

Expand Down Expand Up @@ -83,6 +82,7 @@ plugins {
android {...}

dependencies {
ksp("me.2bab:caliper-annotation-processor:$latestVersion")
implementation(project(":library"))
}
```
Expand Down

0 comments on commit ddd88de

Please sign in to comment.