Skip to content

Commit

Permalink
Fix for issue #501
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Aug 3, 2017
1 parent 8fc5fbd commit 5dde5ea
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [9.6.1] - 2017-08-03
## Fixed
- Fix for issue #501: Could not load file or assembly 'Polly, Version=5.2.0.0, Culture=neutral, PublicKeyToken=null'
- The dependency for Polly has been corrected

## [9.6.0] - 2017-08-02
## Added
- Pull #497: Transient Fault Handling
Expand Down
10 changes: 6 additions & 4 deletions nuspec/Sendgrid.9.6.0.nuspec → nuspec/Sendgrid.9.6.1.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Sendgrid</id>
<version>9.6.0</version>
<version>9.6.1</version>
<title>SendGrid</title>
<authors>Elmer Thomas,SendGrid DX Team</authors>
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
Expand All @@ -11,20 +11,22 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support.</summary>
<releaseNotes>## Added
- Pull #497: Transient Fault Handling
- Thanks to [Dylan Morley](https://github.com/dylan-asos) for the PR!</releaseNotes>
<releaseNotes>## Fixed
- Fix for issue #501: Could not load file or assembly 'Polly, Version=5.2.0.0, Culture=neutral, PublicKeyToken=null'
- The dependency for Polly has been corrected</releaseNotes>
<copyright>SendGrid, Inc. 2017</copyright>
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
<dependencies>
<group targetFramework=".NETFramework4.0">
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="System.Net.Http" version="4.0.0" />
<dependency id="Polly-Signed" version="5.2.0" />
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="NETStandard.Library" version="1.6.1" />
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.0" />
<dependency id="Polly-Signed" version="5.2.0" />
</group>
</dependencies>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion src/SendGrid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]

[assembly: AssemblyInformationalVersion("9.6.0")]
[assembly: AssemblyInformationalVersion("9.6.1")]
4 changes: 2 additions & 2 deletions src/SendGrid/SendGrid.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>9.6.0</VersionPrefix>
<VersionPrefix>9.6.1</VersionPrefix>
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
<PlatformTarget>anycpu</PlatformTarget>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -20,7 +20,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Polly" Version="5.2.0" />
<PackageReference Include="Polly-Signed" Version="5.2.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 5dde5ea

Please sign in to comment.