From 4a371cfa5bd4d8d9488745669b9492d4f8a79963 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Fri, 15 Feb 2013 10:08:35 -0800 Subject: [PATCH] Bump version --- CHANGELOG | 3 +++ README.md | 2 +- VERSION | 2 +- pom.xml | 2 +- src/main/java/com/stripe/Stripe.java | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7d52cfd8f58..7001017da32 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/README.md b/README.md index 40bf56b409e..6765e5d9750 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.15 + 1.1.16 ### Others diff --git a/VERSION b/VERSION index 645377eea8d..63b283b23ac 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.15 +1.1.16 diff --git a/pom.xml b/pom.xml index 1b193129d61..d1a7de83049 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.stripe stripe-java jar - 1.1.15 + 1.1.16 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 b8768ea8463..2563acdf875 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.1.15"; + public static final String VERSION = "1.1.16"; public static String apiKey; public static String apiVersion; }