diff --git a/CHANGELOG.md b/CHANGELOG.md index 915fd605a..dc51a35f1 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.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 + ## [7.0.1] - 2016-06-15 ### Fixed - Hard-coded subject in mail helper: https://github.com/sendgrid/sendgrid-csharp/issues/234 diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj index 98044fa6b..94d11f64f 100644 --- a/SendGrid/Example/Example.csproj +++ b/SendGrid/Example/Example.csproj @@ -50,8 +50,8 @@ ..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll True - - ..\packages\SendGrid.CSharp.HTTP.Client.2.0.1\lib\SendGrid.CSharp.HTTP.Client.dll + + ..\packages\SendGrid.CSharp.HTTP.Client.2.0.4\lib\SendGrid.CSharp.HTTP.Client.dll True @@ -72,7 +72,9 @@ Designer - + + Designer + diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs index 767194e80..85fa5744d 100644 --- a/SendGrid/Example/Properties/AssemblyInfo.cs +++ b/SendGrid/Example/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Example")] -[assembly: AssemblyCopyright("Copyright © 2012")] +[assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -35,5 +35,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("7.0.1")] -[assembly: AssemblyFileVersion("7.0.1")] \ No newline at end of file +[assembly: AssemblyVersion("7.0.2")] +[assembly: AssemblyFileVersion("7.0.2")] \ No newline at end of file diff --git a/SendGrid/Example/packages.config b/SendGrid/Example/packages.config index a0de518f2..119cfba88 100644 --- a/SendGrid/Example/packages.config +++ b/SendGrid/Example/packages.config @@ -1,6 +1,5 @@  - - - + + \ No newline at end of file diff --git a/SendGrid/SendGrid/Properties/AssemblyInfo.cs b/SendGrid/SendGrid/Properties/AssemblyInfo.cs index 69fab6e43..6e50b0221 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.0.1")] -[assembly: AssemblyFileVersion("7.0.1")] +[assembly: AssemblyVersion("7.0.2")] +[assembly: AssemblyFileVersion("7.0.2")] diff --git a/SendGrid/SendGrid/SendGrid.csproj b/SendGrid/SendGrid/SendGrid.csproj index e40d1615c..81592a8dd 100644 --- a/SendGrid/SendGrid/SendGrid.csproj +++ b/SendGrid/SendGrid/SendGrid.csproj @@ -47,8 +47,8 @@ ..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll True - - ..\packages\SendGrid.CSharp.HTTP.Client.2.0.1\lib\SendGrid.CSharp.HTTP.Client.dll + + ..\packages\SendGrid.CSharp.HTTP.Client.2.0.4\lib\SendGrid.CSharp.HTTP.Client.dll True diff --git a/SendGrid/SendGrid/packages.config b/SendGrid/SendGrid/packages.config index 607392532..2f37910b1 100644 --- a/SendGrid/SendGrid/packages.config +++ b/SendGrid/SendGrid/packages.config @@ -2,5 +2,5 @@ - + \ No newline at end of file diff --git a/SendGrid/UnitTest/Properties/AssemblyInfo.cs b/SendGrid/UnitTest/Properties/AssemblyInfo.cs index 595c614e7..f32672067 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.0.1")] -[assembly: AssemblyFileVersion("7.0.1")] +[assembly: AssemblyVersion("7.0.2")] +[assembly: AssemblyFileVersion("7.0.2")] diff --git a/SendGrid/UnitTest/UnitTests.csproj b/SendGrid/UnitTest/UnitTests.csproj index 68ea8512a..e90a90208 100644 --- a/SendGrid/UnitTest/UnitTests.csproj +++ b/SendGrid/UnitTest/UnitTests.csproj @@ -67,8 +67,8 @@ ..\packages\NUnitTestAdapter.2.0.0\lib\NUnit.VisualStudio.TestAdapter.dll False - - ..\packages\SendGrid.CSharp.HTTP.Client.2.0.1\lib\SendGrid.CSharp.HTTP.Client.dll + + ..\packages\SendGrid.CSharp.HTTP.Client.2.0.4\lib\SendGrid.CSharp.HTTP.Client.dll True @@ -94,7 +94,9 @@ - + + Designer + diff --git a/SendGrid/UnitTest/packages.config b/SendGrid/UnitTest/packages.config index 95691d8b2..47fd2809b 100644 --- a/SendGrid/UnitTest/packages.config +++ b/SendGrid/UnitTest/packages.config @@ -3,5 +3,5 @@ - + \ No newline at end of file