Skip to content

Commit 19ff603

Browse files
Bump version to 20.27.0
1 parent c1971f9 commit 19ff603

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 7.63.0 - 2020-11-17
3+
## 20.27.0 - 2020-11-17
44
* [#1152](https://github.com/stripe/stripe-java/pull/1152) Multiple API changes
55
* Add support for sepa_debit on SetupIntentCreateParams, SetupIntentUpdateParams, and SetupIntentConfirmParams.
66

@@ -42,9 +42,6 @@
4242
## 20.18.0 - 2020-10-14
4343
* [#1129](https://github.com/stripe/stripe-java/pull/1129) Add support for the Payout Reverse API
4444

45-
## 20.17.0 - 2020-10-12
46-
* [#1128](https://github.com/stripe/stripe-java/pull/1128) Add support for `setup_intent.requires_action` on `Event`
47-
4845
## 20.16.0 - 2020-10-09
4946
* [#1126](https://github.com/stripe/stripe-java/pull/1126) Add support for internal-only `description`, `iin`, and `issuer` for `card_present` and `interac_present` on `Charge.payment_method_details`.
5047

@@ -934,6 +931,12 @@ Pull requests included in this release:
934931
## 8.0.0 - 2019-03-19
935932
* [#662](https://github.com/stripe/stripe-java/pull/662) Major version release. Supports a pinned API version [2019-03-14](https://stripe.com/docs/upgrades#2019-03-14). Refer to our [migration guide for v8](https://github.com/stripe/stripe-java/wiki/Migration-guide-for-v8) for API upgrade guide and lists of backwards incompatible changes to watch out for.
936933

934+
## 7.63.1 - 2020-17-11
935+
* Identical to 7.29.0
936+
937+
## 7.63.0 - 2020-17-11
938+
* Published in error. Do not use. This is identical to 20.27.0.
939+
937940
## 7.29.0 - 2019-03-18
938941
* [#695](https://github.com/stripe/stripe-java/pull/695) Add support for `payment_intent` on `Charge`.
939942

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The official [Stripe][stripe] Java client library.
1717
Add this dependency to your project's build file:
1818

1919
```groovy
20-
implementation "com.stripe:stripe-java:7.63.0"
20+
implementation "com.stripe:stripe-java:20.27.0"
2121
```
2222

2323
### Maven users
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828
<dependency>
2929
<groupId>com.stripe</groupId>
3030
<artifactId>stripe-java</artifactId>
31-
<version>7.63.0</version>
31+
<version>20.27.0</version>
3232
</dependency>
3333
```
3434

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.63.0
1+
20.27.0

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=7.63.0
2+
VERSION_NAME=20.27.0
33

44
POM_URL=https://github.com/stripe/stripe-java
55
POM_SCM_URL=[email protected]:stripe/stripe-java.git

src/main/java/com/stripe/Stripe.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public abstract class Stripe {
1313
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
1414
public static final String LIVE_API_BASE = "https://api.stripe.com";
1515
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
16-
public static final String VERSION = "7.63.0";
16+
public static final String VERSION = "20.27.0";
1717

1818
public static volatile String apiKey;
1919
public static volatile String clientId;

0 commit comments

Comments
 (0)