Skip to content

Commit

Permalink
Merge pull request #285 from DanielMartinus/release/2.0.1
Browse files Browse the repository at this point in the history
Release/2.0.1
  • Loading branch information
DanielMartinus authored Jan 2, 2022
2 parents 2878993 + 23c0666 commit e519dff
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions konfetti/compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

ext {
PUBLISH_GROUP_ID = 'nl.dionsegijn'
PUBLISH_VERSION = "2.0.0"
PUBLISH_VERSION = "2.0.1"
PUBLISH_ARTIFACT_ID = 'konfetti-compose'
}

Expand Down Expand Up @@ -63,7 +63,7 @@ android {
}

dependencies {
api project(path: ':konfetti:core')
api 'nl.dionsegijn:konfetti-core:2.0.1'

implementation "androidx.compose.foundation:foundation:$compose_version"
implementation "androidx.compose.ui:ui:$compose_version"
Expand Down
9 changes: 9 additions & 0 deletions konfetti/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ plugins {
id 'com.diffplug.spotless'
}

ext {
PUBLISH_GROUP_ID = 'nl.dionsegijn'
PUBLISH_VERSION = "2.0.1"
PUBLISH_ARTIFACT_ID = 'konfetti-core'
}

apply from: "${rootProject.projectDir}/scripts/publish-mavencentral.gradle"

spotless {
kotlin {
ktlint("0.37.2")
Expand Down Expand Up @@ -48,6 +56,7 @@ android {
}

dependencies {
api 'nl.dionsegijn:konfetti-core:2.0.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.11.2'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package nl.dionsegijn.konfetti.core.emitter

import android.graphics.Rect
import android.util.Log
import nl.dionsegijn.konfetti.core.models.Shape
import nl.dionsegijn.konfetti.core.models.Vector
import kotlin.math.abs
Expand Down
4 changes: 2 additions & 2 deletions konfetti/xml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: "com.diffplug.spotless"

ext {
PUBLISH_GROUP_ID = 'nl.dionsegijn'
PUBLISH_VERSION = "2.0.0"
PUBLISH_VERSION = "2.0.1"
PUBLISH_ARTIFACT_ID = 'konfetti-xml'
}

Expand Down Expand Up @@ -52,7 +52,7 @@ android {
}

dependencies {
api project(path: ':konfetti:core')
api 'nl.dionsegijn:konfetti-core:2.0.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.11.2'
Expand Down
2 changes: 1 addition & 1 deletion samples/shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
}

dependencies {
implementation project(path: ':konfetti:core')
implementation 'nl.dionsegijn:konfetti-core:2.0.1'

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
Expand Down

0 comments on commit e519dff

Please sign in to comment.