Skip to content

Commit bdf0f19

Browse files
Version Bump v8.0.0: BREAKING CHANGE #259 async fix
1 parent f46ea6f commit bdf0f19

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [8.0.0] - 2016-07-22 ##
5+
## BREAKING CHANGE
6+
- updated dependency on [SendGrid.CSharp.HTTP.Client](https://github.com/sendgrid/csharp-http-client/releases/tag/v3.0.0), which had a breaking change
7+
- Fixes [issue #259](https://github.com/sendgrid/sendgrid-csharp/issues/259)
8+
- the async behavior in the HTTP client has changed, as we don’t block on .Result anymore 
9+
- Updated USAGE, examples and README to demonstrate await usage
10+
411
## [7.1.1] - 2016-07-20 ##
512
### Added
613
- README updates

SendGrid/Example/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

38-
[assembly: AssemblyVersion("7.1.1")]
39-
[assembly: AssemblyFileVersion("7.1.1")]
38+
[assembly: AssemblyVersion("8.0.0")]
39+
[assembly: AssemblyFileVersion("8.0.0")]

SendGrid/SendGrid/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("7.1.1")]
36-
[assembly: AssemblyFileVersion("7.1.1")]
35+
[assembly: AssemblyVersion("8.0.0")]
36+
[assembly: AssemblyFileVersion("8.0.0")]

SendGrid/UnitTest/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("7.1.1")]
36-
[assembly: AssemblyFileVersion("7.1.1")]
35+
[assembly: AssemblyVersion("8.0.0")]
36+
[assembly: AssemblyFileVersion("8.0.0")]

0 commit comments

Comments
 (0)