From e21f7b36554ebfe45642e5f2fcca8291a62660dc Mon Sep 17 00:00:00 2001 From: Vinay Gaba Date: Mon, 3 Jun 2024 21:35:46 -0700 Subject: [PATCH] Prepare for release 1.0.3 --- README.md | 12 ++++++------ gradle.properties | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 20486cd4..bd9b33c6 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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" ``` diff --git a/gradle.properties b/gradle.properties index ad7c4fea..8cb8ac88 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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