Navigation Menu

Skip to content

Commit

Permalink
Bump version to 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Sep 24, 2018
1 parent ebbc8be commit 0f14e63
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## 7.0.0 - 2018-09-24
Major version release. Refer to our [migration guide for v7](https://github.com/stripe/stripe-java/wiki/Migration-guide-for-v7) for a list of backwards incompatible changes to watch out for.

Pull requests included in this release:
* [#598](https://github.com/stripe/stripe-java/pull/598) Compatibility with latest API version
* [#593](https://github.com/stripe/stripe-java/pull/593) Replace `FileUpload` class with `File` class
* [#592](https://github.com/stripe/stripe-java/pull/592) Support for terminal endpoints

## 6.12.0 - 2018-09-06
* [#586](https://github.com/stripe/stripe-java/pull/586) Add `invoicePrefix` to `Customer`

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>6.12.0</version>
<version>7.0.0</version>
</dependency>
```

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

```groovy
compile "com.stripe:stripe-java:6.12.0"
compile "com.stripe:stripe-java:7.0.0"
```

### Others
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
6.12.0
7.0.0
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.stripe
VERSION_NAME=6.12.0
VERSION_NAME=7.0.0

POM_URL=https://github.com/stripe/stripe-java
POM_SCM_URL=git@github.com:stripe/stripe-java.git
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/stripe/Stripe.java
Expand Up @@ -13,7 +13,7 @@ public abstract class Stripe {
public static final String LIVE_API_BASE = "https://api.stripe.com";
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
public static final String VERSION = "6.12.0";
public static final String VERSION = "7.0.0";

public static volatile String apiKey;
public static volatile String apiVersion;
Expand Down

0 comments on commit 0f14e63

Please sign in to comment.