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

Commit

Permalink
Bump version number up
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Galbraith committed Dec 19, 2016
1 parent a5c6b65 commit 9ca6fb4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
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.0.4'
compile 'com.constantcontact:java-sdk:5.1.1'
```

### Maven
Expand All @@ -54,7 +54,7 @@ compile 'com.constantcontact:java-sdk:5.0.4'
<dependency>
<groupId>com.constantcontact</groupId>
<artifactId>java-sdk</artifactId>
<version>5.0.4</version>
<version>5.1.1</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ org.gradle.daemon=true

VERSION_MAJOR=5
VERSION_MINOR=1
VERSION_PATCH=0
VERSION_PATCH=1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Response intercept(Chain chain) throws IOException {
.addHeader("Authorization", "Bearer " + _token)
.addHeader("Content-Type", "application/json")
.addHeader("User-Agent",
"Constant Contact Java Library v5.0.1") // TODO: Add version # dynamically
"Constant Contact Java Library v5.1.1") // TODO: Add version # dynamically
.build();
return chain.proceed(newRequest);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.constantcontact.v2;

import java.io.IOException;

import okhttp3.HttpUrl;
import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;

import java.io.IOException;

class CCApiInterceptor implements Interceptor {
private final String _apiKey;

Expand All @@ -30,7 +30,7 @@ public Response intercept(Chain chain) throws IOException {
.addHeader("Authorization", "Bearer " + _token)
.addHeader("Content-Type", "application/json")
.addHeader("User-Agent",
"Constant Contact Java Library v5.0.1") // TODO: Add version # dynamically
"Constant Contact Java Library v5.1.1") // TODO: Add version # dynamically
.build();
return chain.proceed(newRequest);
}
Expand Down

0 comments on commit 9ca6fb4

Please sign in to comment.