Skip to content

Commit

Permalink
Bump version to 12.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mshafrir-stripe committed Dec 16, 2019
1 parent 1a623a6 commit 8a50ce2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 12.6.2 - unreleased
## 12.7.0 - 2019-12-16
* [#1915](https://github.com/stripe/stripe-android/pull/1915) Update API version to [2019-12-03](https://stripe.com/docs/upgrades#2019-12-03)
* [#1928](https://github.com/stripe/stripe-android/pull/1928) Make Payment Method `Wallet` a sealed class
* [#1930](https://github.com/stripe/stripe-android/pull/1930) Update text size for `CardInputWidget` fields
Expand All @@ -9,6 +9,18 @@
* Upgrade to `com.google.android.material:material:1.2.0-alpha2`
* [#1949](https://github.com/stripe/stripe-android/pull/1949) Catch `NullPointerException` when calling `StripeEditText.setHint()`.
This is a workaround for a [known issue on some Samsung devices](https://issuetracker.google.com/issues/37127697).
* [#1951](https://github.com/stripe/stripe-android/pull/1951) Expose ability to enable postal code on `CardInputWidget`
* Enable via layout
```
<com.stripe.android.view.CardInputWidget
android:id="@+id/card_input_widget"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:shouldShowPostalCode="true" />
```
* Enable via code
* Java: `cardInputWidget.setPostalCodeEnabled(true)`
* Kotlin: `cardInputWidget.postalCodeEnabled = true`

## 12.6.1 - 2019-12-02
* [#1897](https://github.com/stripe/stripe-android/pull/1897) Upgrade 3DS2 SDK to `2.2.4`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Add `stripe-android` to your `build.gradle` dependencies.

```
dependencies {
implementation 'com.stripe:stripe-android:12.6.1'
implementation 'com.stripe:stripe-android:12.7.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.6.1
12.7.0
4 changes: 2 additions & 2 deletions stripe/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stripe.android"
android:versionCode="85"
android:versionName="12.6.1"
android:versionCode="86"
android:versionName="12.7.0"
>

<application>
Expand Down
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=12.6.1
VERSION_NAME=12.7.0
POM_DESCRIPTION=Stripe Android Bindings
POM_NAME=stripe-android
POM_ARTIFACT_ID=stripe-android
Expand Down

0 comments on commit 8a50ce2

Please sign in to comment.