diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-01 12:29:20 -0700 |
---|---|---|
committer | Maxim Dubrovkin <maximdubrovkin@Maxims-MBP.Dlink> | 2016-09-20 20:13:16 +0500 |
commit | 6918b3507397a7cd99b7d8c1752d94466e62138e (patch) | |
tree | 6faf6c34c4e1a71c10fc16d1fdb57c9a30866235 | |
parent | 2faf7ce433a3a34078316130d52413e7fbe75075 (diff) | |
download | sendgrid-csharp-6918b3507397a7cd99b7d8c1752d94466e62138e.zip sendgrid-csharp-6918b3507397a7cd99b7d8c1752d94466e62138e.tar.gz sendgrid-csharp-6918b3507397a7cd99b7d8c1752d94466e62138e.tar.bz2 |
Version Bump v8.0.2: Fix Issue #273
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-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, 12 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 896e137..25c768f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## [8.0.2] - 2016-08-01 ## +## Fixed +- [Issue #273](https://github.com/sendgrid/sendgrid-csharp/issues/273): Disable (or set) tracking +- Now, settings set to false will generate the correct JSON +- Big thanks to [Pontus Öwre](https://github.com/owre) for the pull! + ## [8.0.1] - 2016-07-25 ## ### Added - [Troubleshooting](https://github.com/sendgrid/sendgrid-csharp/blob/master/TROUBLESHOOTING.md) section diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs index dd5cc3f..a6e27bb 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.1")]
-[assembly: AssemblyFileVersion("8.0.1")]
+[assembly: AssemblyVersion("8.0.2")]
+[assembly: AssemblyFileVersion("8.0.2")]
diff --git a/SendGrid/SendGrid/Properties/AssemblyInfo.cs b/SendGrid/SendGrid/Properties/AssemblyInfo.cs index dc58e2d..631b1fe 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.1")] -[assembly: AssemblyFileVersion("8.0.1")] +[assembly: AssemblyVersion("8.0.2")] +[assembly: AssemblyFileVersion("8.0.2")] diff --git a/SendGrid/UnitTest/Properties/AssemblyInfo.cs b/SendGrid/UnitTest/Properties/AssemblyInfo.cs index 7dff1a7..6be7e04 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.1")] -[assembly: AssemblyFileVersion("8.0.1")] +[assembly: AssemblyVersion("8.0.2")] +[assembly: AssemblyFileVersion("8.0.2")] |