Skip to content

Commit

Permalink
Prepare for release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaygaba committed Jun 4, 2024
1 parent 825927f commit e21f7b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Showkase
![Showkase Version](https://img.shields.io/badge/Showkase-1.0.2-brightgreen) ![Compatible with Compose](https://img.shields.io/badge/Compatible%20with%20Compose-1.5.13-brightgreen)
![Showkase Version](https://img.shields.io/badge/Showkase-1.0.3-brightgreen) ![Compatible with Compose](https://img.shields.io/badge/Compatible%20with%20Compose-1.5.13-brightgreen)

Showkase is an annotation-processor based Android library that helps you organize, discover, search
and visualize [Jetpack Compose](https://developer.android.com/jetpack/compose) UI elements. With
Expand Down Expand Up @@ -75,15 +75,15 @@ Showkase supports both ksp and kapt. By default, it uses kapt as we only recentl
#### If you want Showkase to be available only in debug builds (Recommended and practical for most use cases)

```kotlin
debugImplementation "com.airbnb.android:showkase:1.0.2"
implementation "com.airbnb.android:showkase-annotation:1.0.2"
kspDebug "com.airbnb.android:showkase-processor:1.0.2" or kaptDebug "com.airbnb.android:showkase-processor:1.0.2"
debugImplementation "com.airbnb.android:showkase:1.0.3"
implementation "com.airbnb.android:showkase-annotation:1.0.3"
kspDebug "com.airbnb.android:showkase-processor:1.0.3" or kaptDebug "com.airbnb.android:showkase-processor:1.0.3"
```

#### If you want Showkase to be available in your release builds as well
```kotlin
implementation "com.airbnb.android:showkase:1.0.2"
ksp "com.airbnb.android:showkase-processor:1.0.2" or kapt "com.airbnb.android:showkase-processor:1.0.2"
implementation "com.airbnb.android:showkase:1.0.3"
ksp "com.airbnb.android:showkase-processor:1.0.3" or kapt "com.airbnb.android:showkase-processor:1.0.3"

```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ kapt.include.compile.classpath=false
RELEASE_SIGNING_ENABLED=true
SONATYPE_HOST=DEFAULT

VERSION_NAME=1.0.2
VERSION_NAME=1.0.3
GROUP=com.airbnb.android
POM_DESCRIPTION=Showkase is an Android library that helps you organize, discover, search and visualize Jetpack Compose components.
POM_URL=https://github.com/airbnb/Showkase
Expand Down

0 comments on commit e21f7b3

Please sign in to comment.