From caabd46cfa9538659b9f71d850b3fa7bc112628f Mon Sep 17 00:00:00 2001 From: Gyuri Grell Date: Wed, 12 Jul 2017 12:27:27 -0400 Subject: [PATCH] Bumped version in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a8cfdab9..730a2c09 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Each service is fully documented in the [Javadoc](http://constantcontact.github. ```java CCApi2 api = new CCApi2("your_api_key", "your_access_token"); try { - AccountSummaryInformation accountSummary = api.getAccountService().getAccountSummaryInformation().execute(); + AccountSummaryInformation accountSummary = api.getAccountService().getAccountSummaryInformation().execute().body(); } catch (IOException e) { // Handle exception } @@ -45,7 +45,7 @@ you will also need to download the Components JAR and include it in your build f ### Gradle ```groovy -compile 'com.constantcontact:java-sdk:5.1.5' +compile 'com.constantcontact:java-sdk:5.1.7' ``` ### Maven @@ -54,7 +54,7 @@ compile 'com.constantcontact:java-sdk:5.1.5' com.constantcontact java-sdk - 5.1.5 + 5.1.7 ```