diff --git a/CHANGELOG.md b/CHANGELOG.md
index b33b353f5..96ec6ecdd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.
+## [9.8.0] - 2017-08-15
+## 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!
+
## [9.7.0] - 2017-08-03
## Added
- Reverted to version 9.5.2, per the conversation here: #501
diff --git a/USE_CASES.md b/USE_CASES.md
index e60b428a1..7dd98b924 100644
--- a/USE_CASES.md
+++ b/USE_CASES.md
@@ -343,12 +343,14 @@ namespace Example
var subject = "Sending with SendGrid is Fun";
var plainTextContent = "and easy to do anywhere, even with C#";
var htmlContent = "and easy to do anywhere, even with C#";
+ var showAllRecipients = false; // Set to true if you want the recipients to see each others email addresses
var msg = MailHelper.CreateSingleEmailToMultipleRecipients(from,
tos,
subject,
plainTextContent,
- htmlContent
+ htmlContent,
+ showAllRecipients
);
var response = await client.SendEmailAsync(msg);
}
diff --git a/nuspec/Sendgrid.9.7.0.nuspec b/nuspec/Sendgrid.9.8.0.nuspec
similarity index 82%
rename from nuspec/Sendgrid.9.7.0.nuspec
rename to nuspec/Sendgrid.9.8.0.nuspec
index 927599a44..d02bae3e2 100644
--- a/nuspec/Sendgrid.9.7.0.nuspec
+++ b/nuspec/Sendgrid.9.8.0.nuspec
@@ -2,7 +2,7 @@
Sendgrid
- 9.7.0
+ 9.8.0
SendGrid
Elmer Thomas,SendGrid DX Team
https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE
@@ -12,9 +12,9 @@
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
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.
## Added
-- Reverted to version 9.5.2, per the conversation here: #501
-- Polly (which implemented Transient Fault Handling) was removed in favor of a dependency free solution.
-- Transient Fault Handling with Polly still exists in version 9.6.1, if needed
+- 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!
SendGrid, Inc. 2017
SendGrid Email Mail Microsoft Azure Transactional .NET Core
diff --git a/src/SendGrid/Properties/AssemblyInfo.cs b/src/SendGrid/Properties/AssemblyInfo.cs
index 51300db29..5eb4106a4 100644
--- a/src/SendGrid/Properties/AssemblyInfo.cs
+++ b/src/SendGrid/Properties/AssemblyInfo.cs
@@ -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.7.0")]
+[assembly: AssemblyInformationalVersion("9.8.0")]
diff --git a/src/SendGrid/SendGrid.csproj b/src/SendGrid/SendGrid.csproj
index be6afb500..5d92d9405 100644
--- a/src/SendGrid/SendGrid.csproj
+++ b/src/SendGrid/SendGrid.csproj
@@ -1,7 +1,7 @@
- 9.7.0
+ 9.8.0
netstandard1.3;net452
anycpu
true