Skip to content

Commit

Permalink
Bump version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-stripe committed Aug 30, 2013
1 parent c219328 commit 6e79a3c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
=== 1.3.2 2013-08-30

* Add missing retrieve method to BalanceTransaction
* Add missing fields to BalanceTransaction
- id
- fee
- feeDetails
- description
* Add id field to Subscription

=== 1.3.1 2013-08-21

* Patch release with missing field, added tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>

### Others
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1
1.3.2
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<packaging>jar</packaging>
<version>1.3.1</version>
<version>1.3.2</version>
<name>stripe-java</name>
<url>https://github.com/stripe/stripe-java</url>
<dependencies>
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 @@ -3,7 +3,7 @@
public abstract class Stripe
{
public static final String API_BASE = "https://api.stripe.com";
public static final String VERSION = "1.3.1";
public static final String VERSION = "1.3.2";
public static String apiKey;
public static String apiVersion;
}

0 comments on commit 6e79a3c

Please sign in to comment.