From bdf0f19e911d205851e45f88fdbfb9b1e490d874 Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Fri, 22 Jul 2016 17:54:29 -0700 Subject: [PATCH] Version Bump v8.0.0: BREAKING CHANGE #259 async fix --- CHANGELOG.md | 7 +++++++ SendGrid/Example/Properties/AssemblyInfo.cs | 4 ++-- SendGrid/SendGrid/Properties/AssemblyInfo.cs | 4 ++-- SendGrid/UnitTest/Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 059229765..cced82bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log All notable changes to this project will be documented in this file. +## [8.0.0] - 2016-07-22 ## +## BREAKING CHANGE +- updated dependency on [SendGrid.CSharp.HTTP.Client](https://github.com/sendgrid/csharp-http-client/releases/tag/v3.0.0), which had a breaking change +- Fixes [issue #259](https://github.com/sendgrid/sendgrid-csharp/issues/259) +- the async behavior in the HTTP client has changed, as we don’t block on .Result anymore  +- Updated USAGE, examples and README to demonstrate await usage + ## [7.1.1] - 2016-07-20 ## ### Added - README updates diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs index 6c1a8c043..854ebb040 100644 --- a/SendGrid/Example/Properties/AssemblyInfo.cs +++ b/SendGrid/Example/Properties/AssemblyInfo.cs @@ -35,5 +35,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("7.1.1")] -[assembly: AssemblyFileVersion("7.1.1")] \ No newline at end of file +[assembly: AssemblyVersion("8.0.0")] +[assembly: AssemblyFileVersion("8.0.0")] \ No newline at end of file diff --git a/SendGrid/SendGrid/Properties/AssemblyInfo.cs b/SendGrid/SendGrid/Properties/AssemblyInfo.cs index 5adf35d81..60b7412c3 100644 --- a/SendGrid/SendGrid/Properties/AssemblyInfo.cs +++ b/SendGrid/SendGrid/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // 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.1.1")] -[assembly: AssemblyFileVersion("7.1.1")] +[assembly: AssemblyVersion("8.0.0")] +[assembly: AssemblyFileVersion("8.0.0")] diff --git a/SendGrid/UnitTest/Properties/AssemblyInfo.cs b/SendGrid/UnitTest/Properties/AssemblyInfo.cs index b4f674b8d..3832b45b6 100644 --- a/SendGrid/UnitTest/Properties/AssemblyInfo.cs +++ b/SendGrid/UnitTest/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // 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.1.1")] -[assembly: AssemblyFileVersion("7.1.1")] +[assembly: AssemblyVersion("8.0.0")] +[assembly: AssemblyFileVersion("8.0.0")]