Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-stripe committed Feb 15, 2013
1 parent 2958220 commit 4a371cf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
=== 1.1.16 2013-02-15
* Fix off-by-one error in deserializing events (github issue #27)

=== 1.1.15 2013-02-01
* List all checked exceptions throws by methods.
* Add support for plan interval count.
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.15</version>
<version>1.1.16</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.15
1.1.16
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.15</version>
<version>1.1.16</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.1.15";
public static final String VERSION = "1.1.16";
public static String apiKey;
public static String apiVersion;
}

0 comments on commit 4a371cf

Please sign in to comment.