Skip to content

Commit

Permalink
Merge pull request #22 from dokar3/v0.2.6
Browse files Browse the repository at this point in the history
V0.2.6: Bump Compose to 1.2.0-beta03
  • Loading branch information
dokar3 committed Jun 4, 2022
2 parents 3c10f18 + 707b8d1 commit 7ae05ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_version = '1.2.0-beta02'
compose_version = '1.2.0-beta03'
kotlin_version = '1.6.21'
accompanist_version = '0.24.9-beta'
accompanist_version = '0.24.10-beta'
}
repositories {
google()
Expand All @@ -22,8 +22,9 @@ buildscript {

allprojects {
plugins.withId("com.vanniktech.maven.publish") {
mavenPublish {
sonatypeHost = "S01"
mavenPublishing {
publishToMavenCentral("S01")
signAllPublications()
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin.code.style=official

GROUP=io.github.dokar3
POM_ARTIFACT_ID=chiptextfield
VERSION_NAME=0.2.5
VERSION_NAME=0.2.6

POM_NAME=ChipTextField
POM_DESCRIPTION=Editable chip layout in Jetpack Compose.
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

android {
compileSdk 31
compileSdk 32

defaultConfig {
minSdk 21
targetSdk 31
targetSdk 32

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

android {
compileSdk 31
compileSdk 32

defaultConfig {
applicationId "com.dokar.chiptextfield.sample"
minSdk 21
targetSdk 31
targetSdk 32
versionCode 1
versionName "1.0"

Expand Down

0 comments on commit 7ae05ef

Please sign in to comment.