Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Bumped version in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyuri Grell committed Jul 12, 2017
1 parent 0fd2819 commit caabd46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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
Expand All @@ -54,7 +54,7 @@ compile 'com.constantcontact:java-sdk:5.1.5'
<dependency>
<groupId>com.constantcontact</groupId>
<artifactId>java-sdk</artifactId>
<version>5.1.5</version>
<version>5.1.7</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit caabd46

Please sign in to comment.