Skip to content

Commit

Permalink
Release v8.6.0 (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
danwaters-stripe authored and mshafrir-stripe committed Apr 4, 2019
1 parent e33de29 commit 8169293
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 17 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# CHANGELOG

### 8.6.0 2019-04-05
* Downgrade from AndroidX to Support Library [#849]
* Add setter for custom CVC field label on CardMultilineWidget [#843]
* Refactor StripeApiHandler to use instance methods [#839]
* Downgrade from AndroidX to Android Support Library [#849]
* Add setter for custom CVC field label on `CardMultilineWidget` [#843]
* Fix a11y traversal order in `CardInputWidget` [#850]
* Refactor `StripeApiHandler` to use instance methods [#839]

### 8.5.0 2019-03-05
* Clean up `PaymentIntent` [#805]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The Stripe Android SDK makes it quick and easy to build an excellent payment exp
No need to clone the repository or download any files -- just add this line to your app's `build.gradle` inside the `dependencies` section:

```
implementation 'com.stripe:stripe-android:8.5.0'
implementation 'com.stripe:stripe-android:8.6.0'
```

Note: We recommend that you don't use `compile 'com.stripe:stripe-android:+`, as future versions of the SDK may not maintain full backwards compatibility. When such a change occurs, a major version number change will accompany it.
Expand Down
17 changes: 5 additions & 12 deletions stripe/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,30 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stripe.android"
android:versionCode="32"
android:versionName="8.5.0"
android:versionCode="33"
android:versionName="8.6.0"
>

<application>
<activity
android:name=".view.AddSourceActivity"
android:theme="@style/StripeDefaultTheme"
android:windowSoftInputMode="stateVisible"
>

</activity>
android:windowSoftInputMode="stateVisible" />

<activity
android:name=".view.PaymentMethodsActivity"
android:theme="@style/StripeDefaultTheme"
>
</activity>
android:theme="@style/StripeDefaultTheme" />

<activity
android:name=".view.PaymentFlowActivity"
android:theme="@style/StripeDefaultTheme"
>
</activity>
android:theme="@style/StripeDefaultTheme" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion stripe/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=8.5.0
VERSION_NAME=8.6.0
POM_DESCRIPTION=Stripe Android Bindings
POM_NAME=stripe-android
POM_ARTIFACT_ID=stripe-android
Expand Down

0 comments on commit 8169293

Please sign in to comment.