From 88823c76a9b1290b9a575ac82f4ea55304a60e45 Mon Sep 17 00:00:00 2001 From: Crankshaft Robot Date: Fri, 21 Jul 2017 10:07:56 +0000 Subject: [PATCH] Crankshaft[BU0000046C13AJ] .NET client @ 2017-07-21 10:07:56 UTC --- GoCardless/GoCardless.csproj | 2 +- GoCardless/GoCardlessClient.cs | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/GoCardless/GoCardless.csproj b/GoCardless/GoCardless.csproj index b2496a5..59125db 100644 --- a/GoCardless/GoCardless.csproj +++ b/GoCardless/GoCardless.csproj @@ -2,7 +2,7 @@ GoCardless - 2.0.2 + 2.0.3 GoCardless Ltd Client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments false diff --git a/GoCardless/GoCardlessClient.cs b/GoCardless/GoCardlessClient.cs index f4c911f..ad16363 100644 --- a/GoCardless/GoCardlessClient.cs +++ b/GoCardless/GoCardlessClient.cs @@ -216,9 +216,9 @@ private HttpRequestMessage BuildHttpRequestMessage(string method, string path var httpMethod = new HttpMethod(method); var requestMessage = new HttpRequestMessage(httpMethod, new Uri(_baseUrl, path)); - requestMessage.Headers.Add("User-Agent", "gocardless-dotnet/2.0.2"); + requestMessage.Headers.Add("User-Agent", "gocardless-dotnet/2.0.3"); requestMessage.Headers.Add("GoCardless-Version", "2015-07-06"); - requestMessage.Headers.Add("GoCardless-Client-Version", "2.0.2"); + requestMessage.Headers.Add("GoCardless-Client-Version", "2.0.3"); requestMessage.Headers.Add("GoCardless-Client-Library", "gocardless-dotnet"); requestMessage.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", _accessToken); diff --git a/README.md b/README.md index d09055d..388f5f4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ For full details of the GoCardless API, see the [API docs](https://developer.goc To install `GoCardless`, run the following command in the [Package Manager Console](https://docs.microsoft.com/en-us/nuget/tools/package-manager-console) -`Install-Package GoCardless -Version 2.0.2` +`Install-Package GoCardless -Version 2.0.3` ## Usage