Skip to content

Commit

Permalink
Version Bump v9.0.0: PR #396 - Fix MailHelper null issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Feb 15, 2017
1 parent 652b29b commit cfdc375
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Change Log
All notable changes to this project will be documented in this file.

## [9.0.9] - 2017-02-15 ##
## Fix
- Issue #396: Make 'stylecop' a development dependency
- Thanks to [@knopa](https://github.com/knopa) for the heads up!

## [9.0.8] - 2017-02-14 ##
## Update
- Issue #394: Make 'stylecop' a development dependency
- Issue #394: Issue with CreateSingleEmail
- You can now have either a null plain/text or plain/html type in the MailHelper
- Thanks to [@onionhammer](https://github.com/onionhammer) for the heads up!

## [9.0.7] - 2017-02-14 ##
Expand Down
17 changes: 9 additions & 8 deletions nuspec/Sendgrid.9.0.8.nuspec → nuspec/Sendgrid.9.0.9.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Sendgrid</id>
<version>9.0.8</version>
<version>9.0.9</version>
<title>SendGrid</title>
<authors>Elmer Thomas</authors>
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
Expand All @@ -11,7 +11,8 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints.</summary>
<releaseNotes>Moved StyleCop to be a development dependency</releaseNotes>
<releaseNotes>- Issue #396: Make 'stylecop' a development dependency
- Thanks to [@knopa](https://github.com/knopa) for the heads up!</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>SendGrid Email Mail Microsoft Azure Transactional</tags>
<dependencies>
Expand All @@ -27,11 +28,11 @@
</dependencies>
</metadata>
<files>
<file src="lib\net452\SendGrid.dll" target="lib\net452\SendGrid.dll" />
<file src="lib\net452\SendGrid.pdb" target="lib\net452\SendGrid.pdb" />
<file src="lib\net452\SendGrid.xml" target="lib\net452\SendGrid.xml" />
<file src="lib\netstandard1.3\SendGrid.dll" target="lib\netstandard1.3\SendGrid.dll" />
<file src="lib\netstandard1.3\SendGrid.pdb" target="lib\netstandard1.3\SendGrid.pdb" />
<file src="lib\netstandard1.3\SendGrid.xml" target="lib\netstandard1.3\SendGrid.xml" />
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.dll" target="lib\net452\SendGrid.dll" />
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.pdb" target="lib\net452\SendGrid.pdb" />
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.xml" target="lib\net452\SendGrid.xml" />
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.dll" target="lib\netstandard1.3\SendGrid.dll" />
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.pdb" target="lib\netstandard1.3\SendGrid.pdb" />
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.xml" target="lib\netstandard1.3\SendGrid.xml" />
</files>
</package>
2 changes: 1 addition & 1 deletion src/SendGrid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]

[assembly: AssemblyInformationalVersion("9.0.8")]
[assembly: AssemblyInformationalVersion("9.0.9")]
2 changes: 1 addition & 1 deletion src/SendGrid/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
}
}
},
"version": "9.0.8"
"version": "9.0.9"
}

0 comments on commit cfdc375

Please sign in to comment.