diff --git a/CHANGELOG.md b/CHANGELOG.md index 80dfd93c318..a3f72e6d5ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 + ``` + + ``` + * 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` diff --git a/README.md b/README.md index fce487b8ed0..1bf4f094a93 100644 --- a/README.md +++ b/README.md @@ -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' } ``` diff --git a/VERSION b/VERSION index 1b62f917260..e12d94fbf3a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -12.6.1 +12.7.0 diff --git a/stripe/AndroidManifest.xml b/stripe/AndroidManifest.xml index fcb6b7dd9d3..629538278e5 100644 --- a/stripe/AndroidManifest.xml +++ b/stripe/AndroidManifest.xml @@ -1,8 +1,8 @@ diff --git a/stripe/gradle.properties b/stripe/gradle.properties index 0b9328e17f9..cd1856fd4c2 100644 --- a/stripe/gradle.properties +++ b/stripe/gradle.properties @@ -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