Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerlong committed Dec 27, 2019
1 parent 8815daa commit baeec2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RingCentral.Net/RestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public RestClient(string clientId, string clientSecret, bool production = false,
public async Task<HttpResponseMessage> Request(HttpRequestMessage httpRequestMessage)
{
var httpClient = new HttpClient();
httpRequestMessage.Headers.Add("X-User-Agent", $"{appName}/{appVersion} RingCentral.Net/2.1.0");
httpRequestMessage.Headers.Add("X-User-Agent", $"{appName}/{appVersion} RingCentral.Net/2.2.0");
httpRequestMessage.Headers.Authorization = token == null
? new AuthenticationHeaderValue("Basic",
Convert.ToBase64String(
Expand Down
2 changes: 1 addition & 1 deletion RingCentral.Net/RingCentral.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>RingCentral.Net</PackageId>
<PackageVersion>2.1.0</PackageVersion>
<PackageVersion>2.2.0</PackageVersion>
<Authors>Tyler Liu ([email protected])</Authors>
<Description>RingCentral SDK for .NET</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit baeec2b

Please sign in to comment.