Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Thomson committed Jan 5, 2016
2 parents 4f76d45 + 740de4d commit 04c4c64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ With Maven:
<dependency>
<groupId>com.gocardless</groupId>
<artifactId>gocardless-pro</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
```

With Gradle:

```
compile 'com.gocardless:gocardless-pro:1.13.0'
compile 'com.gocardless:gocardless-pro:1.14.0'
```

## Initializing the client
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'signing'

sourceCompatibility = 1.7
group = ' com.gocardless'
version = '1.13.0'
version = '1.14.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/gocardless/http/HttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class HttpClient {
private static final String DISALLOWED_USER_AGENT_CHARACTERS =
"[^\\w!#$%&'\\*\\+\\-\\.\\^`\\|~]";
private static final String USER_AGENT = String.format(
"gocardless-pro/1.13.0 java/%s %s/%s %s/%s",
"gocardless-pro/1.14.0 java/%s %s/%s %s/%s",
cleanUserAgentToken(System.getProperty("java.vm.specification.version")),
cleanUserAgentToken(System.getProperty("java.vm.name")),
cleanUserAgentToken(System.getProperty("java.version")),
Expand Down

0 comments on commit 04c4c64

Please sign in to comment.