Skip to content

Commit

Permalink
Release 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerlong committed Feb 18, 2020
1 parent a0c1770 commit 4fe9c91
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 @@ -45,7 +45,7 @@ public RestClient(string clientId, string clientSecret, bool production = false,

public async Task<HttpResponseMessage> Request(HttpRequestMessage httpRequestMessage)
{
httpRequestMessage.Headers.Add("X-User-Agent", $"{appName}/{appVersion} RingCentral.Net/2.4.0");
httpRequestMessage.Headers.Add("X-User-Agent", $"{appName}/{appVersion} RingCentral.Net/3.0.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.4.0</PackageVersion>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Tyler Liu (tyler.liu@ringcentral.com)</Authors>
<Description>RingCentral SDK for .NET</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit 4fe9c91

Please sign in to comment.