Skip to content

Commit 0842d02

Browse files
Merge pull request #196 from gocardless/template-changes
Changes from gocardless/client-library-templates
2 parents d02882b + f231949 commit 0842d02

5 files changed

Lines changed: 14 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<!-- This file is generated, please add to it using `knope document-change` in the client-library-templates repo -->
22
# Changelog
33

4+
## 8.7.1 (2026-09-02)
5+
6+
### Fixes
7+
8+
- Fix typo in Mandate next_possible_standard_ach_charge_date description
9+
410
## 8.7.0 (2026-09-01)
511

612
### Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ With Maven:
1414
<dependency>
1515
<groupId>com.gocardless</groupId>
1616
<artifactId>gocardless-pro</artifactId>
17-
<version>8.7.0</version>
17+
<version>8.7.1</version>
1818
</dependency>
1919
```
2020

2121
With Gradle:
2222

2323
```
24-
implementation 'com.gocardless:gocardless-pro:8.7.0'
24+
implementation 'com.gocardless:gocardless-pro:8.7.1'
2525
```
2626

2727
## Initializing the client

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ plugins {
2929
sourceCompatibility = 1.8
3030
targetCompatibility = 1.8
3131
group = 'com.gocardless'
32-
version = '8.7.0'
32+
version = '8.7.1'
3333

3434
apply plugin: 'ch.raffael.pegdown-doclet'
3535

src/main/java/com/gocardless/http/HttpClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class HttpClient {
3535
private static final String DISALLOWED_USER_AGENT_CHARACTERS =
3636
"[^\\w!#$%&'\\*\\+\\-\\.\\^`\\|~]";
3737
private static final String USER_AGENT =
38-
String.format("gocardless-pro-java/8.7.0 java/%s %s/%s %s/%s",
38+
String.format("gocardless-pro-java/8.7.1 java/%s %s/%s %s/%s",
3939
cleanUserAgentToken(System.getProperty("java.vm.specification.version")),
4040
cleanUserAgentToken(System.getProperty("java.vm.name")),
4141
cleanUserAgentToken(System.getProperty("java.version")),
@@ -49,7 +49,7 @@ public class HttpClient {
4949
builder.put("GoCardless-Version", "2015-07-06");
5050
builder.put("Accept", "application/json");
5151
builder.put("GoCardless-Client-Library", "gocardless-pro-java");
52-
builder.put("GoCardless-Client-Version", "8.7.0");
52+
builder.put("GoCardless-Client-Version", "8.7.1");
5353
HEADERS = builder.build();
5454
}
5555
private final OkHttpClient rawClient;

src/main/java/com/gocardless/resources/Mandate.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ public String getNextPossibleChargeDate() {
122122
}
123123

124124
/**
125-
* If this is an an ACH mandate, the earliest date that can be used as a
126-
* <code>charge_date</code> on any newly created payment to be charged through standard ACH,
127-
* rather than Faster ACH. This value will change over time.
125+
* If this is an ACH mandate, the earliest date that can be used as a <code>charge_date</code>
126+
* on any newly created payment to be charged through standard ACH, rather than Faster ACH. This
127+
* value will change over time.
128128
*
129129
* It is only present in the API response for ACH mandates.
130130
*/

0 commit comments

Comments
 (0)