From 54a16ecab1b5e62b52f4ac9a5b563675cf76c1b3 Mon Sep 17 00:00:00 2001 From: vinaygaba Date: Fri, 4 Feb 2022 11:48:36 -0800 Subject: [PATCH] Prepare for release 1.0.0-beta11 --- README.md | 10 +++++----- gradle.properties | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8fc52ac7..6430f682 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Showkase -![Showkase Version](https://img.shields.io/badge/Showkase-1.0.0--beta10-brightgreen) ![Compatible with Compose](https://img.shields.io/badge/Compatible%20with%20Compose-1.0.4-brightgreen) +![Showkase Version](https://img.shields.io/badge/Showkase-1.0.0--beta11-brightgreen) ![Compatible with Compose](https://img.shields.io/badge/Compatible%20with%20Compose-1.0.4-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,14 +75,14 @@ Showkase supports both ksp and kapt. By default, it uses kapt as we only recentl #### If you are using kapt ```kotlin -implementation "com.airbnb.android:showkase:1.0.0-beta10" -kapt "com.airbnb.android:showkase-processor:1.0.0-beta10" +implementation "com.airbnb.android:showkase:1.0.0-beta11" +kapt "com.airbnb.android:showkase-processor:1.0.0-beta11" ``` #### If you are using ksp ```kotlin -implementation "com.airbnb.android:showkase:1.0.0-beta10" -ksp "com.airbnb.android:showkase-processor:1.0.0-beta10" +implementation "com.airbnb.android:showkase:1.0.0-beta11" +ksp "com.airbnb.android:showkase-processor:1.0.0-beta11" ``` In addition, you will also need to pass a flag to the gradle command that you use to build/run with showkase. diff --git a/gradle.properties b/gradle.properties index aac536b1..524befca 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ android.enableJetifier=false kotlin.code.style=official kapt.include.compile.classpath=false -VERSION_NAME=1.0.0-beta10 +VERSION_NAME=1.0.0-beta11 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