Skip to content

Commit

Permalink
Version Bump v8.0.0: BREAKING CHANGE #259 async fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Jul 23, 2016
1 parent f46ea6f commit bdf0f19
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions SendGrid/Example/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// 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")]
4 changes: 2 additions & 2 deletions SendGrid/SendGrid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions SendGrid/UnitTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit bdf0f19

Please sign in to comment.