Skip to content

Commit

Permalink
Merge pull request #433 from MindscapeHQ/md/cr-203/cleanup-from-pr-merge
Browse files Browse the repository at this point in the history
[CR-203] Cleanup and release for .NET Core providers after PR merge
  • Loading branch information
mduncan26 committed Jun 30, 2020
2 parents d709d99 + 8de590e commit b7f4b11
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>Raygun</Authors>
<Description>.NetStandard library for targeting ASP.Net Core applications</Description>
<PackageId>Mindscape.Raygun4Net.AspNetCore</PackageId>
<PackageVersion>6.2.0</PackageVersion>
<PackageVersion>6.3.0</PackageVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/MindscapeHQ/raygun4net/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/MindscapeHQ/raygun4net</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion Mindscape.Raygun4Net.AspNetCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Raygun")]
[assembly: AssemblyProduct("Raygun4Net")]
[assembly: AssemblyCopyright("Copyright © Raygun 2016-2019")]
[assembly: AssemblyCopyright("Copyright © Raygun 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.2.0")]
[assembly: AssemblyFileVersion("6.2.0")]
[assembly: AssemblyVersion("6.3.0")]
[assembly: AssemblyFileVersion("6.3.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Authors>Raygun</Authors>
<Description>.NetStandard library .NetCore applications</Description>
<PackageId>Mindscape.Raygun4Net.NetCore.Common</PackageId>
<PackageVersion>6.2.0</PackageVersion>
<PackageVersion>6.3.0</PackageVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/MindscapeHQ/raygun4net/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/MindscapeHQ/raygun4net</PackageProjectUrl>
Expand Down
4 changes: 2 additions & 2 deletions Mindscape.Raygun4Net.NetCore.Tests/Model/FakeRaygunClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public FakeRaygunClient(string apiKey)
{
}

public RaygunMessage ExposeBuildMessage(Exception exception, [Optional] IList<string> tags, [Optional] IDictionary userCustomData)
public RaygunMessage ExposeBuildMessage(Exception exception, [Optional] IList<string> tags, [Optional] IDictionary userCustomData, [Optional] RaygunIdentifierMessage user)
{
var task = BuildMessage(exception, tags, userCustomData);
var task = BuildMessage(exception, tags, userCustomData, user);

task.Wait();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Authors>Raygun</Authors>
<Description>.NetStandard library for targeting .Net Core applications</Description>
<PackageId>Mindscape.Raygun4Net.NetCore</PackageId>
<PackageVersion>6.2.0</PackageVersion>
<PackageVersion>6.3.0</PackageVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/MindscapeHQ/raygun4net/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/MindscapeHQ/raygun4net</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion Mindscape.Raygun4Net.NetCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Raygun")]
[assembly: AssemblyProduct("Raygun4Net")]
[assembly: AssemblyCopyright("Copyright © Raygun 2016-2019")]
[assembly: AssemblyCopyright("Copyright © Raygun 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.2.0")]
[assembly: AssemblyFileVersion("6.2.0")]
[assembly: AssemblyVersion("6.3.0")]
[assembly: AssemblyFileVersion("6.3.0")]

0 comments on commit b7f4b11

Please sign in to comment.