Skip to content

Commit

Permalink
Version Bump v9.9.0: #509 Transient Fault Handling (dependency free)
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Aug 22, 2017
1 parent adb243b commit fccb9d7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## [9.9.0] - 2017-08=22
## Added
- #509 Transient Fault Handling (dependency free)
- Implements retry behaviour for transient faults when using HttpClient to send the request.
- Please see #509 and [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transient_faults) for details.
- Thanks to [Dylan Morley](https://github.com/dylan-asos) for the PR!

## [9.8.0] - 2017-08-15
## Added
- Single email to multiple recipients - Toggle display of recipients #508
Expand Down
4 changes: 2 additions & 2 deletions USE_CASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ In this example we are setting RetryCount to 2, with a mimimum wait time of 1 se

var options = new SendGridClientOptions
{
ApiKey = "Your-Api-Key",
ApiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY"),
ReliabilitySettings = new ReliabilitySettings(2, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(3))
};

Expand All @@ -630,7 +630,7 @@ The SendGridClientOptions object defines all the settings that can be set for th

var options = new SendGridClientOptions
{
ApiKey = "Your-Api-Key",
ApiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY"),
ReliabilitySettings = new ReliabilitySettings(2, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(3)),
Host = "Your-Host",
UrlPath = "Url-Path",
Expand Down
9 changes: 5 additions & 4 deletions nuspec/Sendgrid.9.8.0.nuspec → nuspec/Sendgrid.9.9.0.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.8.0</version>
<version>9.9.0</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 @@ -12,9 +12,10 @@
<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
- Single email to multiple recipients - Toggle display of recipients #508
- The method `CreateSingleEmailToMultipleRecipients` now has an additional optional paramter to control whether the email recipients can see each others email addresses. Please see [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#singleemailmultiplerecipients) for details.
- Thanks to [Niladri Dutta](Niladri24dutta) for the PR!</releaseNotes>
- #509 Transient Fault Handling (dependency free)
- Implements retry behaviour for transient faults when using HttpClient to send the request.
- Please see #509 and [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transient_faults) for details.
- Thanks to [Dylan Morley](https://github.com/dylan-asos) for the PR!</releaseNotes>
<copyright>SendGrid, Inc. 2017</copyright>
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
<dependencies>
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.8.0")]
[assembly: AssemblyInformationalVersion("9.9.0")]
2 changes: 1 addition & 1 deletion 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.8.0</VersionPrefix>
<VersionPrefix>9.9.0</VersionPrefix>
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
<PlatformTarget>anycpu</PlatformTarget>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit fccb9d7

Please sign in to comment.