From 6e79a3c6131da2f1a4fe4ae31772aef259a23859 Mon Sep 17 00:00:00 2001 From: Andrew Metcalf Date: Fri, 30 Aug 2013 14:58:55 -0700 Subject: [PATCH] Bump version to 1.3.2 --- CHANGELOG | 10 ++++++++++ README.md | 2 +- VERSION | 2 +- pom.xml | 2 +- src/main/java/com/stripe/Stripe.java | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index eeb238d233f..bb46e93a346 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/README.md b/README.md index dad73c9a250..b1851bbdf1c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this dependency to your project's POM: com.stripe stripe-java - 1.3.1 + 1.3.2 ### Others diff --git a/VERSION b/VERSION index 3a3cd8cc8b0..1892b926767 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.1 +1.3.2 diff --git a/pom.xml b/pom.xml index f8a440b8b88..eb90855a0de 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.stripe stripe-java jar - 1.3.1 + 1.3.2 stripe-java https://github.com/stripe/stripe-java diff --git a/src/main/java/com/stripe/Stripe.java b/src/main/java/com/stripe/Stripe.java index fc0402976c6..65919f11418 100644 --- a/src/main/java/com/stripe/Stripe.java +++ b/src/main/java/com/stripe/Stripe.java @@ -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; }