Skip to content

Commit

Permalink
Release 1.0.17 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
chander-stripe authored May 30, 2020
1 parent 1c7d2b0 commit b102b81
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 1.0.17 - 2020-05-29
- Fix [issue 109](https://github.com/stripe/stripe-terminal-android/issues/109)

## 1.0.15 - 2020-04-06
- Fix [issue 99](https://github.com/stripe/stripe-terminal-android/issues/99)
- Fix [issue 103](https://github.com/stripe/stripe-terminal-android/issues/103)
Expand Down
2 changes: 1 addition & 1 deletion Example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath 'com.android.tools.build:gradle:4.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions Example/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Mar 17 13:04:19 PDT 2020
#Fri May 29 17:30:33 PDT 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
2 changes: 1 addition & 1 deletion Example/javaapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ext {
okhttp_version = '4.4.1'
retrofit_version = '2.7.2'
stetho_version = '1.5.1'
stripeTerminalVersion = '1.0.15'
stripeTerminalVersion = '1.0.17'
}

dependencies {
Expand Down
9 changes: 1 addition & 8 deletions Example/kotlinapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ext {
okhttp_version = '4.4.1'
retrofit_version = '2.7.2'
stetho_version = '1.5.1'
stripeTerminalVersion = '1.0.15'
stripeTerminalVersion = '1.0.17'
}

dependencies {
Expand Down Expand Up @@ -97,10 +97,3 @@ task ktlint(type: JavaExec, group: "verification") {
// see https://github.com/pinterest/ktlint#usage for more
}
check.dependsOn ktlint

task ktlintFormat(type: JavaExec, group: "formatting") {
description = "Fix Kotlin code style deviations."
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args "-F", "src/**/*.kt"
}

0 comments on commit b102b81

Please sign in to comment.