Skip to content

Commit cfdc375

Browse files
Version Bump v9.0.0: PR #396 - Fix MailHelper null issue
1 parent 652b29b commit cfdc375

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [9.0.9] - 2017-02-15 ##
5+
## Fix
6+
- Issue #396: Make 'stylecop' a development dependency
7+
- Thanks to [@knopa](https://github.com/knopa) for the heads up!
8+
49
## [9.0.8] - 2017-02-14 ##
510
## Update
6-
- Issue #394: Make 'stylecop' a development dependency
11+
- Issue #394: Issue with CreateSingleEmail
12+
- You can now have either a null plain/text or plain/html type in the MailHelper
713
- Thanks to [@onionhammer](https://github.com/onionhammer) for the heads up!
814

915
## [9.0.7] - 2017-02-14 ##

nuspec/Sendgrid.9.0.8.nuspec renamed to nuspec/Sendgrid.9.0.9.nuspec

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>Sendgrid</id>
5-
<version>9.0.8</version>
5+
<version>9.0.9</version>
66
<title>SendGrid</title>
77
<authors>Elmer Thomas</authors>
88
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
@@ -11,7 +11,8 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<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>
1313
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints.</summary>
14-
<releaseNotes>Moved StyleCop to be a development dependency</releaseNotes>
14+
<releaseNotes>- Issue #396: Make 'stylecop' a development dependency
15+
- Thanks to [@knopa](https://github.com/knopa) for the heads up!</releaseNotes>
1516
<copyright>Copyright 2017</copyright>
1617
<tags>SendGrid Email Mail Microsoft Azure Transactional</tags>
1718
<dependencies>
@@ -27,11 +28,11 @@
2728
</dependencies>
2829
</metadata>
2930
<files>
30-
<file src="lib\net452\SendGrid.dll" target="lib\net452\SendGrid.dll" />
31-
<file src="lib\net452\SendGrid.pdb" target="lib\net452\SendGrid.pdb" />
32-
<file src="lib\net452\SendGrid.xml" target="lib\net452\SendGrid.xml" />
33-
<file src="lib\netstandard1.3\SendGrid.dll" target="lib\netstandard1.3\SendGrid.dll" />
34-
<file src="lib\netstandard1.3\SendGrid.pdb" target="lib\netstandard1.3\SendGrid.pdb" />
35-
<file src="lib\netstandard1.3\SendGrid.xml" target="lib\netstandard1.3\SendGrid.xml" />
31+
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.dll" target="lib\net452\SendGrid.dll" />
32+
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.pdb" target="lib\net452\SendGrid.pdb" />
33+
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.xml" target="lib\net452\SendGrid.xml" />
34+
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.dll" target="lib\netstandard1.3\SendGrid.dll" />
35+
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.pdb" target="lib\netstandard1.3\SendGrid.pdb" />
36+
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.xml" target="lib\netstandard1.3\SendGrid.xml" />
3637
</files>
3738
</package>

src/SendGrid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]
2424

25-
[assembly: AssemblyInformationalVersion("9.0.8")]
25+
[assembly: AssemblyInformationalVersion("9.0.9")]

src/SendGrid/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@
4646
}
4747
}
4848
},
49-
"version": "9.0.8"
49+
"version": "9.0.9"
5050
}

0 commit comments

Comments
 (0)