Skip to content

Commit cecc1ee

Browse files
Version Bump: v9.0.8: Moving StyleCop to a development dependency
1 parent 729013f commit cecc1ee

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## [9.0.0] - 2017-02-14 ##
4+
## [9.0.8] - 2017-02-14 ##
5+
## Update
6+
- Issue #394: Make 'stylecop' a development dependency
7+
- Thanks to [@onionhammer](https://github.com/onionhammer) for the heads up!
8+
9+
## [9.0.7] - 2017-02-14 ##
510
### BREAKING CHANGE
611
- Support for .NET Standard 1.3
712
- Removed dynamic dependencies

nuspec/Sendgrid.9.0.7.nuspec renamed to nuspec/Sendgrid.9.0.8.nuspec

+8-13
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.7</version>
5+
<version>9.0.8</version>
66
<title>SendGrid</title>
77
<authors>Elmer Thomas</authors>
88
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
@@ -11,32 +11,27 @@
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>BREAKING CHANGE
15-
- Support for .NET Standard 1.3
16-
- Removed dynamic dependencies
17-
- Updated Mail Helper</releaseNotes>
14+
<releaseNotes>Moved StyleCop to be a development dependency</releaseNotes>
1815
<copyright>Copyright 2017</copyright>
1916
<tags>SendGrid Email Mail Microsoft Azure Transactional</tags>
2017
<dependencies>
2118
<group targetFramework=".NETFramework4.0">
2219
<dependency id="Newtonsoft.Json" version="9.0.1" />
23-
<dependency id="StyleCop.Analyzers" version="1.0.0" />
2420
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.0" />
2521
</group>
2622
<group targetFramework=".NETStandard1.3">
2723
<dependency id="NETStandard.Library" version="1.6.1" />
2824
<dependency id="Newtonsoft.Json" version="9.0.1" />
2925
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.0" />
30-
<dependency id="StyleCop.Analyzers" version="1.0.0" />
3126
</group>
3227
</dependencies>
3328
</metadata>
3429
<files>
35-
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.dll" target="lib\net452\SendGrid.dll" />
36-
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.pdb" target="lib\net452\SendGrid.pdb" />
37-
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.xml" target="lib\net452\SendGrid.xml" />
38-
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.dll" target="lib\netstandard1.3\SendGrid.dll" />
39-
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.pdb" target="lib\netstandard1.3\SendGrid.pdb" />
40-
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.xml" target="lib\netstandard1.3\SendGrid.xml" />
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" />
4136
</files>
4237
</package>

src/SendGrid/Properties/AssemblyInfo.cs

+1-1
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.7")]
25+
[assembly: AssemblyInformationalVersion("9.0.8")]

src/SendGrid/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@
4646
}
4747
}
4848
},
49-
"version": "9.0.7"
49+
"version": "9.0.8"
5050
}

0 commit comments

Comments
 (0)