Skip to content

Commit 5dde5ea

Browse files
Fix for issue #501
1 parent 8fc5fbd commit 5dde5ea

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [9.6.1] - 2017-08-03
5+
## Fixed
6+
- Fix for issue #501: Could not load file or assembly 'Polly, Version=5.2.0.0, Culture=neutral, PublicKeyToken=null'
7+
- The dependency for Polly has been corrected
8+
49
## [9.6.0] - 2017-08-02
510
## Added
611
- Pull #497: Transient Fault Handling

nuspec/Sendgrid.9.6.0.nuspec renamed to nuspec/Sendgrid.9.6.1.nuspec

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>Sendgrid</id>
5-
<version>9.6.0</version>
5+
<version>9.6.1</version>
66
<title>SendGrid</title>
77
<authors>Elmer Thomas,SendGrid DX Team</authors>
88
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
@@ -11,20 +11,22 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<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>
1313
<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>
14-
<releaseNotes>## Added
15-
- Pull #497: Transient Fault Handling
16-
- Thanks to [Dylan Morley](https://github.com/dylan-asos) for the PR!</releaseNotes>
14+
<releaseNotes>## Fixed
15+
- Fix for issue #501: Could not load file or assembly 'Polly, Version=5.2.0.0, Culture=neutral, PublicKeyToken=null'
16+
- The dependency for Polly has been corrected</releaseNotes>
1717
<copyright>SendGrid, Inc. 2017</copyright>
1818
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
1919
<dependencies>
2020
<group targetFramework=".NETFramework4.0">
2121
<dependency id="Newtonsoft.Json" version="9.0.1" />
2222
<dependency id="System.Net.Http" version="4.0.0" />
23+
<dependency id="Polly-Signed" version="5.2.0" />
2324
</group>
2425
<group targetFramework=".NETStandard1.3">
2526
<dependency id="NETStandard.Library" version="1.6.1" />
2627
<dependency id="Newtonsoft.Json" version="9.0.1" />
2728
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.0" />
29+
<dependency id="Polly-Signed" version="5.2.0" />
2830
</group>
2931
</dependencies>
3032
</metadata>

src/SendGrid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]
2424

25-
[assembly: AssemblyInformationalVersion("9.6.0")]
25+
[assembly: AssemblyInformationalVersion("9.6.1")]

src/SendGrid/SendGrid.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>9.6.0</VersionPrefix>
4+
<VersionPrefix>9.6.1</VersionPrefix>
55
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
66
<PlatformTarget>anycpu</PlatformTarget>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -20,7 +20,7 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Polly" Version="5.2.0" />
23+
<PackageReference Include="Polly-Signed" Version="5.2.0" />
2424
<PackageReference Include="StyleCop.Analyzers" Version="1.0.0">
2525
<PrivateAssets>All</PrivateAssets>
2626
</PackageReference>

0 commit comments

Comments
 (0)