Skip to content

Commit

Permalink
Bump version to 1.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brandur committed Jan 13, 2016
1 parent 1f3c91b commit bd82e12
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
=== 1.41.0 2016-01-13

* Add lots of missing fields to Account, Event, and Refund

=== 1.40.1 2016-01-07

* Fix casting of newer objects to *typed* models
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>1.40.1</version>
<version>1.41.0</version>
</dependency>
```

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

```groovy
compile "com.stripe:stripe-java:1.40.1"
compile "com.stripe:stripe-java:1.41.0"
```

### Others
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.40.1
1.41.0
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<packaging>jar</packaging>
<version>1.40.1</version>
<version>1.41.0</version>
<name>stripe-java</name>
<url>https://github.com/stripe/stripe-java</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/stripe/Stripe.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public abstract class Stripe {
public static final String UPLOAD_API_BASE = "https://uploads.stripe.com";
public static final String LIVE_API_BASE = "https://api.stripe.com";
public static final String VERSION = "1.40.1";
public static final String VERSION = "1.41.0";
public static volatile String apiKey;
public static volatile String apiVersion;

Expand Down

0 comments on commit bd82e12

Please sign in to comment.