Skip to content

Commit fccb9d7

Browse files
Version Bump v9.9.0: #509 Transient Fault Handling (dependency free)
1 parent adb243b commit fccb9d7

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

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

4+
## [9.9.0] - 2017-08=22
5+
## Added
6+
- #509 Transient Fault Handling (dependency free)
7+
- Implements retry behaviour for transient faults when using HttpClient to send the request.
8+
- Please see #509 and [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transient_faults) for details.
9+
- Thanks to [Dylan Morley](https://github.com/dylan-asos) for the PR!
10+
411
## [9.8.0] - 2017-08-15
512
## Added
613
- Single email to multiple recipients - Toggle display of recipients #508

USE_CASES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ In this example we are setting RetryCount to 2, with a mimimum wait time of 1 se
616616

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

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

631631
var options = new SendGridClientOptions
632632
{
633-
ApiKey = "Your-Api-Key",
633+
ApiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY"),
634634
ReliabilitySettings = new ReliabilitySettings(2, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(3)),
635635
Host = "Your-Host",
636636
UrlPath = "Url-Path",

nuspec/Sendgrid.9.8.0.nuspec renamed to nuspec/Sendgrid.9.9.0.nuspec

Lines changed: 5 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.8.0</version>
5+
<version>9.9.0</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>
@@ -12,9 +12,10 @@
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>
1414
<releaseNotes>## Added
15-
- Single email to multiple recipients - Toggle display of recipients #508
16-
- 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.
17-
- Thanks to [Niladri Dutta](Niladri24dutta) for the PR!</releaseNotes>
15+
- #509 Transient Fault Handling (dependency free)
16+
- Implements retry behaviour for transient faults when using HttpClient to send the request.
17+
- Please see #509 and [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transient_faults) for details.
18+
- Thanks to [Dylan Morley](https://github.com/dylan-asos) for the PR!</releaseNotes>
1819
<copyright>SendGrid, Inc. 2017</copyright>
1920
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
2021
<dependencies>

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.8.0")]
25+
[assembly: AssemblyInformationalVersion("9.9.0")]

src/SendGrid/SendGrid.csproj

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

33
<PropertyGroup>
4-
<VersionPrefix>9.8.0</VersionPrefix>
4+
<VersionPrefix>9.9.0</VersionPrefix>
55
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
66
<PlatformTarget>anycpu</PlatformTarget>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)