Skip to content

Commit ba22d5a

Browse files
committed
Bump version to 14.0.1
1 parent 216edee commit ba22d5a

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# Changelog
22

3+
## 14.0.1 - 2019-10-18
4+
* [#864](https://github.com/stripe/stripe-java/pull/864)
5+
* Remove `renewal_behavior` on Subscription Schedule model class
6+
* Remove `renewal_interval` on Subscription Schedule parameter classes
7+
* The above are technically breaking changes and should have been released with 14.0.0.
8+
39
## 14.0.0 - 2019-10-18
410
* [#863](https://github.com/stripe/stripe-java/pull/863) Upgrade to new API version [`2019-10-17`](https://stripe.com/docs/upgrades#2019-10-17)
511
* Pin to API version `2019-10-17`
612
* Remove `account_balance` from Customer model and parameter classes
713
* Remove `billing` from Invoice, Subscription and Subscription Schedule model and parameter classes
814
* Remove `start` from Subscription model
915
* Remove `renewal_behavior` from Subscription Schedule parameter classes
16+
* **Note:** This release was missing some breaking changes. Please use 14.0.1 instead.
1017

1118
## 13.3.0 - 2019-10-17
1219
* [#862](https://github.com/stripe/stripe-java/pull/862) [codegen] Update API Resources

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this dependency to your project's POM:
1616
<dependency>
1717
<groupId>com.stripe</groupId>
1818
<artifactId>stripe-java</artifactId>
19-
<version>14.0.0</version>
19+
<version>14.0.1</version>
2020
</dependency>
2121
```
2222

@@ -25,7 +25,7 @@ Add this dependency to your project's POM:
2525
Add this dependency to your project's build file:
2626

2727
```groovy
28-
implementation "com.stripe:stripe-java:14.0.0"
28+
implementation "com.stripe:stripe-java:14.0.1"
2929
```
3030

3131
### Others

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.0.0
1+
14.0.1

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=14.0.0
2+
VERSION_NAME=14.0.1
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 = "14.0.0";
16+
public static final String VERSION = "14.0.1";
1717

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

0 commit comments

Comments
 (0)