Skip to content

Commit

Permalink
Prepare for release 1.0.0-beta06
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaygaba committed Oct 14, 2021
1 parent 987970b commit 242788b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
6 changes: 3 additions & 3 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.0--beta05-brightgreen) ![Compatible with Compose](https://img.shields.io/badge/Compatible%20with%20Compose-1.0.3-brightgreen)
![Showkase Version](https://img.shields.io/badge/Showkase-1.0.0--beta06-brightgreen) ![Compatible with Compose](https://img.shields.io/badge/Compatible%20with%20Compose-1.0.3-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 @@ -70,8 +70,8 @@ setup, add this dependency to all the modules with UI elements that should be di
Showkase browser.

```kotlin
implementation "com.airbnb.android:showkase:1.0.0-beta05"
kapt "com.airbnb.android:showkase-processor:1.0.0-beta05"
implementation "com.airbnb.android:showkase:1.0.0-beta06"
kapt "com.airbnb.android:showkase-processor:1.0.0-beta06"
```

**Step 2**: Add the relevant annotations for every UI element that should be a part of the
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android.enableJetifier=false
kotlin.code.style=official
kapt.include.compile.classpath=false

VERSION_NAME=1.0.0-beta05
VERSION_NAME=1.0.0-beta06
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
11 changes: 11 additions & 0 deletions showkase-screenshot-testing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
buildscript {
repositories {
mavenCentral()
}
// Maven artifact publish
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
}
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: "com.vanniktech.maven.publish"

android {
compileSdkVersion 31
Expand Down

0 comments on commit 242788b

Please sign in to comment.