diff --git a/CHANGELOG.md b/CHANGELOG.md index 360d37e51..97016b9c1 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.2.0] - 2017-05-05 +## Update +- PR #444: AddTo, AddBcc, AddCc and SetFrom that just takes an email and name +- Solves Issue #408 +- Thanks to [Paritosh Baghel](https://github.com/paritoshmmmec) for the PR! + ## [9.1.1] - 2017-04-12 ## Fix - PR #358: SendGridClient.SendEmailAsync now throws original exception diff --git a/nuspec/Sendgrid.9.1.1.nuspec b/nuspec/Sendgrid.9.2.0.nuspec similarity index 90% rename from nuspec/Sendgrid.9.1.1.nuspec rename to nuspec/Sendgrid.9.2.0.nuspec index 374a1db51..b1bf41e2e 100644 --- a/nuspec/Sendgrid.9.1.1.nuspec +++ b/nuspec/Sendgrid.9.2.0.nuspec @@ -2,7 +2,7 @@ Sendgrid - 9.1.1 + 9.2.0 SendGrid Elmer Thomas,SendGrid DX Team https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE @@ -11,9 +11,10 @@ false 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. - ## Fix -- PR #358: SendGridClient.SendEmailAsync now throws original exception -- Thanks to [Otto Dandenell](https://github.com/ottomatic) for the PR! + ## Update +- PR #444: AddTo, AddBcc, AddCc and SetFrom that just takes an email and name +- Solves Issue #408 +- Thanks to [Paritosh Baghel](https://github.com/paritoshmmmec) 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 cfe011942..b600db119 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.1.1")] +[assembly: AssemblyInformationalVersion("9.2.0")] diff --git a/src/SendGrid/project.json b/src/SendGrid/project.json index 173ab1d82..864b63f53 100644 --- a/src/SendGrid/project.json +++ b/src/SendGrid/project.json @@ -48,5 +48,5 @@ } } }, - "version": "9.1.1" + "version": "9.2.0" }