Skip to content

Commit 2125ef0

Browse files
Changes generated by 38b6bd430ab33d15b2abc25508cc6e0b72530845
This commit was automatically created from gocardless/gocardless-dotnet-template@38b6bd4 by the `push-files` action. Workflow run: https://github.com/gocardless/gocardless-dotnet-template/actions/runs/17492759852
1 parent 54dc9a2 commit 2125ef0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

GoCardless/GoCardless.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<PackageId>GoCardless</PackageId>
5-
<PackageVersion>9.1.0</PackageVersion>
5+
<PackageVersion>9.2.0</PackageVersion>
66
<Authors>GoCardless Ltd</Authors>
77
<Description>Client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments</Description>
88
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
@@ -11,7 +11,7 @@
1111
<Copyright>GoCardless Ltd</Copyright>
1212
<PackageTags>gocardless payments rest api direct debit</PackageTags>
1313
<PackageLicenseUrl>https://github.com/gocardless/gocardless-dotnet/blob/master/LICENSE.txt</PackageLicenseUrl>
14-
<PackageReleaseNotes>https://github.com/gocardless/gocardless-dotnet/releases/tag/v9.1.0</PackageReleaseNotes>
14+
<PackageReleaseNotes>https://github.com/gocardless/gocardless-dotnet/releases/tag/v9.2.0</PackageReleaseNotes>
1515
<TargetFrameworks>netstandard2.0;netstandard2.1;net461;net8.0</TargetFrameworks>
1616
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1717
<GenerateDocumentationFile>true</GenerateDocumentationFile>

GoCardless/GoCardlessClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,11 @@ private HttpRequestMessage BuildHttpRequestMessage<T>(string method, string path
311311
runtimeFrameworkInformation = System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion();
312312
#endif
313313

314-
var userAgentInformation = $" gocardless-dotnet/9.1.0 {runtimeFrameworkInformation} {Helpers.CleanupOSDescriptionString(OSRunningOn)}";
314+
var userAgentInformation = $" gocardless-dotnet/9.2.0 {runtimeFrameworkInformation} {Helpers.CleanupOSDescriptionString(OSRunningOn)}";
315315

316316
requestMessage.Headers.Add("User-Agent", userAgentInformation);
317317
requestMessage.Headers.Add("GoCardless-Version", "2015-07-06");
318-
requestMessage.Headers.Add("GoCardless-Client-Version", "9.1.0");
318+
requestMessage.Headers.Add("GoCardless-Client-Version", "9.2.0");
319319
requestMessage.Headers.Add("GoCardless-Client-Library", "gocardless-dotnet");
320320
requestMessage.Headers.Authorization =
321321
new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", _accessToken);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For full details of the GoCardless API, see the [API docs](https://developer.goc
1313

1414
To install `GoCardless`, run the following command in the [Package Manager Console](https://docs.microsoft.com/en-us/nuget/tools/package-manager-console)
1515

16-
`Install-Package GoCardless -Version 9.1.0`
16+
`Install-Package GoCardless -Version 9.2.0`
1717

1818

1919
## Usage

0 commit comments

Comments
 (0)