diff --git a/CHANGELOG b/CHANGELOG index a1f0c9ea655..680cc6ff096 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +=== 1.1.1 2012-05-24 + +* Use String.length() == 0 instead of String.isEmpty() for + compatibility with JDK 1.5 (needed for Android 2.2) + === 1.1.0 2012-05-16 * Change type of cvcCheck, addressZipCheck, and addressLine1Check diff --git a/README.md b/README.md index 151924d00c7..16f08c0030f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this dependency to your project's POM: com.stripe stripe-java - 1.1.0 + 1.1.1 ### Others diff --git a/VERSION b/VERSION index 9084fa2f716..524cb55242b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.1.1 diff --git a/pom.xml b/pom.xml index 226dc40d446..022e0fce13a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.stripe stripe-java jar - 1.1.0 + 1.1.1 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 58fbb531d0c..6f4bf80f246 100644 --- a/src/main/java/com/stripe/Stripe.java +++ b/src/main/java/com/stripe/Stripe.java @@ -3,6 +3,6 @@ public abstract class Stripe { public static final String API_BASE = "https://api.stripe.com/v1"; - public static final String VERSION = "1.1.0"; + public static final String VERSION = "1.1.1"; public static String apiKey; }