diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-24 11:09:39 -0700 |
---|---|---|
committer | Maxim Dubrovkin <maximdubrovkin@Maxims-MBP.Dlink> | 2016-09-20 20:13:45 +0500 |
commit | fa265a1e2638baa645885958431c1750992f9bdc (patch) | |
tree | e6af147f79c7710dbf7d3d6c2287613dd173879a | |
parent | 158ebd4eb4b0003c96c65fe6551445d85050ffed (diff) | |
download | sendgrid-csharp-fa265a1e2638baa645885958431c1750992f9bdc.zip sendgrid-csharp-fa265a1e2638baa645885958431c1750992f9bdc.tar.gz sendgrid-csharp-fa265a1e2638baa645885958431c1750992f9bdc.tar.bz2 |
Version Bump v8.0.4: Added TOC to README, Added USE_CASES.md
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-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, 11 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d2b755..26f30af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. +## [8.0.4] - 2016-08-24 ## +### Added +- Table of Contents in the README +- Added a [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md) section, with the first use case example for transactional templates + ## [8.0.3] - 2016-08-17 ## ## Fixed - [Issue #297](https://github.com/sendgrid/sendgrid-csharp/issues/297): Don't Include Empty Objects in JSON Request Body diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs index 6245e50..d380c76 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("8.0.3")]
-[assembly: AssemblyFileVersion("8.0.3")]
+[assembly: AssemblyVersion("8.0.4")]
+[assembly: AssemblyFileVersion("8.0.4")]
diff --git a/SendGrid/SendGrid/Properties/AssemblyInfo.cs b/SendGrid/SendGrid/Properties/AssemblyInfo.cs index 05abc68..bc6a5fa 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("8.0.3")] -[assembly: AssemblyFileVersion("8.0.3")] +[assembly: AssemblyVersion("8.0.4")] +[assembly: AssemblyFileVersion("8.0.4")] diff --git a/SendGrid/UnitTest/Properties/AssemblyInfo.cs b/SendGrid/UnitTest/Properties/AssemblyInfo.cs index 1796075..4e1a953 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("8.0.3")] -[assembly: AssemblyFileVersion("8.0.3")] +[assembly: AssemblyVersion("8.0.4")] +[assembly: AssemblyFileVersion("8.0.4")] |