Skip to content

Commit a979c16

Browse files
Version Bump v1.3.3: #28: Added Newtonsoft.Json as a package dependency in the nuspec file.
1 parent 65bbc75 commit a979c16

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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-
## [1.3.1] - 2017-3-8
4+
## [1.3.3] - 2017-5-18
5+
### Updated
6+
- Pull request #28: Added Newtonsoft.Json as a package dependency in the nuspec file.
7+
- Thanks to [webster354](https://github.com/webster354) for the PR!
8+
9+
## [1.3.2] - 2017-3-8
510
### Updated
611
- Pull request #14: Refactor to JSON.net and simplify the code
712
- Thanks to [Leon de Pruyssenaere de la Woestijne](https://github.com/leonpw) for the PR!

Smtpapi/Smtpapi/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
3434

35-
[assembly: AssemblyVersion("1.3.2.0")]
36-
[assembly: AssemblyFileVersion("1.3.2.0")]
35+
[assembly: AssemblyVersion("1.3.3.0")]
36+
[assembly: AssemblyFileVersion("1.3.3.0")]

Smtpapi/nuspec/SendGrid.SmtpApi.1.3.2.nuspec renamed to Smtpapi/nuspec/SendGrid.SmtpApi.1.3.3.nuspec

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,27 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>SendGrid.SmtpApi</id>
5-
<version>1.3.2</version>
5+
<version>1.3.3</version>
66
<authors>Brandon West,Elmer Thomas</authors>
77
<owners>Brandon West</owners>
88
<projectUrl>https://github.com/sendgrid/smtpapi-csharp</projectUrl>
99
<iconUrl>https://sendgrid.com/wp-content/themes/sgdotcom/pages/brand/2016/SendGrid-Logomark.png</iconUrl>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>Easily build SendGrid SMTPAPI headers.</description>
1212
<summary>Easily build SendGrid SMTPAPI headers.</summary>
13-
<releaseNotes />
13+
<releaseNotes>### Updated
14+
- Pull request #28: Added Newtonsoft.Json as a package dependency in the nuspec file.
15+
- Thanks to [webster354](https://github.com/webster354) for the PR!</releaseNotes>
1416
<copyright>Copyright SendGrid, Inc. 2017</copyright>
1517
<tags>smtpapi sendgrid email</tags>
16-
<dependencies>
17-
<dependency id="Newtonsoft.Json" version="9.0.0" />
18-
</dependencies>
18+
<dependencies>
19+
<dependency id="Newtonsoft.Json" version="9.0.1" />
20+
</dependencies>
1921
</metadata>
2022
<files>
21-
<file src="lib\SendGrid.SmtpApi.dll" target="lib\SendGrid.SmtpApi.dll" />
22-
<file src="lib\SendGrid.SmtpApi.dll.config" target="lib\SendGrid.SmtpApi.dll.config" />
23-
<file src="lib\SendGrid.SmtpApi.pdb" target="lib\SendGrid.SmtpApi.pdb" />
23+
<file src="..\Smtpapi\bin\Release\SendGrid.SmtpApi.dll" target="lib\SendGrid.SmtpApi.dll" />
24+
<file src="..\Smtpapi\bin\Release\SendGrid.SmtpApi.dll.config" target="lib\SendGrid.SmtpApi.dll.config" />
25+
<file src="..\Smtpapi\bin\Release\SendGrid.SmtpApi.pdb" target="lib\SendGrid.SmtpApi.pdb" />
26+
<file src="..\Smtpapi\bin\Release\SendGrid.SmtpApi.xml" target="lib\SendGrid.SmtpApi.xml" />
2427
</files>
2528
</package>

0 commit comments

Comments
 (0)