Skip to content

Commit e0e4204

Browse files
committed
Bump version to 6.8.0
1 parent 2d1b0fb commit e0e4204

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 6.8.0 - 2018-08-28
4+
* [#577](https://github.com/stripe/stripe-java/pull/577) Update `Customer` and `Plan` models for API version [2018-08-23](https://stripe.com/docs/upgrades#2018-08-23)
5+
* [#579](https://github.com/stripe/stripe-java/pull/579) Add `authorizationCode` to `Charge`
6+
37
## 6.7.0 - 2018-08-27
48
* [#575](https://github.com/stripe/stripe-java/pull/575) Remove support for `BitcoinReceiver` write-actions
59

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>6.7.0</version>
19+
<version>6.8.0</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-
compile "com.stripe:stripe-java:6.7.0"
28+
compile "com.stripe:stripe-java:6.8.0"
2929
```
3030

3131
### Others

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.7.0
1+
6.8.0

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=6.7.0
2+
VERSION_NAME=6.8.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 LIVE_API_BASE = "https://api.stripe.com";
1414
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
1515
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
16-
public static final String VERSION = "6.7.0";
16+
public static final String VERSION = "6.8.0";
1717

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

0 commit comments

Comments
 (0)