Skip to content

Commit

Permalink
Release version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-stripe committed May 25, 2012
1 parent fb014cf commit 2d1b5c6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
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.1.0</version>
<version>1.1.1</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.1.0
1.1.1
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.1.0</version>
<version>1.1.1</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,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;
}

0 comments on commit 2d1b5c6

Please sign in to comment.