diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-06-28 08:54:16 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-06-28 08:54:16 -0700 |
commit | 7cc4cb6d481a8155969a72728942c658668b8fc8 (patch) | |
tree | 4a98ff4e52ac7fb64ae0aa26ab4349825b2dd365 | |
parent | 7a2c7cdb83ba5fe09e9446fc60d53d7b95b33944 (diff) | |
download | sendgrid-csharp-7cc4cb6d481a8155969a72728942c658668b8fc8.zip sendgrid-csharp-7cc4cb6d481a8155969a72728942c658668b8fc8.tar.gz sendgrid-csharp-7cc4cb6d481a8155969a72728942c658668b8fc8.tar.bz2 |
Version Bump v7.03: 232 Send mail fails with BadRequest when apostrophe used in sender name
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | SendGrid/Example/Properties/AssemblyInfo.cs | 4 | ||||
-rw-r--r-- | SendGrid/SendGrid/Properties/AssemblyInfo.cs | 4 | ||||
-rw-r--r-- | SendGrid/UnitTest/Properties/AssemblyInfo.cs | 4 |
4 files changed, 10 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index dc51a35..6fdf5b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. +## [7.0.3] - 2016-06-28 +### Fixed +- Send mail fails with BadRequest when apostrophe used in sender name: https://github.com/sendgrid/sendgrid-csharp/issues/232 + ## [7.0.2] - 2016-06-16 ### Fixed - Async broken in library, causing deadlocks and responses not returning in non-console apps: https://github.com/sendgrid/sendgrid-csharp/issues/235 diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs index 85fa574..9fd48e3 100644 --- a/SendGrid/Example/Properties/AssemblyInfo.cs +++ b/SendGrid/Example/Properties/AssemblyInfo.cs @@ -35,5 +35,5 @@ using System.Runtime.InteropServices; // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("7.0.2")]
-[assembly: AssemblyFileVersion("7.0.2")]
\ No newline at end of file +[assembly: AssemblyVersion("7.0.3")]
+[assembly: AssemblyFileVersion("7.0.3")]
\ No newline at end of file diff --git a/SendGrid/SendGrid/Properties/AssemblyInfo.cs b/SendGrid/SendGrid/Properties/AssemblyInfo.cs index 6e50b02..77ab1f7 100644 --- a/SendGrid/SendGrid/Properties/AssemblyInfo.cs +++ b/SendGrid/SendGrid/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("7.0.2")] -[assembly: AssemblyFileVersion("7.0.2")] +[assembly: AssemblyVersion("7.0.3")] +[assembly: AssemblyFileVersion("7.0.3")] diff --git a/SendGrid/UnitTest/Properties/AssemblyInfo.cs b/SendGrid/UnitTest/Properties/AssemblyInfo.cs index f326720..78372ea 100644 --- a/SendGrid/UnitTest/Properties/AssemblyInfo.cs +++ b/SendGrid/UnitTest/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("7.0.2")] -[assembly: AssemblyFileVersion("7.0.2")] +[assembly: AssemblyVersion("7.0.3")] +[assembly: AssemblyFileVersion("7.0.3")] |