From 0c7ddf297a748328e5bf51c9f357f8a94b846f3f Mon Sep 17 00:00:00 2001 From: Sheena Pakanati Date: Thu, 8 Nov 2012 12:49:09 -0800 Subject: [PATCH] Bump version to 1.1.9 --- CHANGELOG | 4 ++++ README.md | 2 +- pom.xml | 2 +- src/main/java/com/stripe/Stripe.java | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4ad8337a401..956530fa2e8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +=== 1.1.9 2012-11-08 +* Add new Dispute resource +* Add support for updating charge disputes + === 1.1.8 2012-10-30 * Add support for creating invoices * Add support for new Invoice.lines return format diff --git a/README.md b/README.md index 20f69cd5c65..12646d535fd 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.8 + 1.1.9 ### Others diff --git a/pom.xml b/pom.xml index f5055a121e3..91fcfb29141 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.stripe stripe-java jar - 1.1.8 + 1.1.9 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 724336e6c4e..66b3f3f77d7 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"; - public static final String VERSION = "1.1.8"; + public static final String VERSION = "1.1.9"; public static String apiKey; }