Skip to content

Commit e95c8c4

Browse files
authored
Merge pull request #21 from RoushTech/staging/0.3.0
0.3.0
2 parents 5841e66 + f60b826 commit e95c8c4

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.3.0
2+
<sup>Released: 2018/05/20</sup>
3+
4+
- Add header_to support for address.
5+
- Actually care about semver.
6+
17
# 0.2.3
28
<sup>Released: 2018/03/06</sup>
39

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 William Roush
3+
Copyright (c) 2016-2018 William Roush
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/SparkPostDotNet/SparkPostDotNet.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<Description>SparkPost Integration for .NET Core</Description>
5-
<Copyright>William Roush 2016-2017</Copyright>
5+
<Copyright>William Roush 2016-2018</Copyright>
66
<AssemblyTitle>SparkPostDotNet</AssemblyTitle>
7-
<VersionPrefix>0.2.3</VersionPrefix>
7+
<VersionPrefix>0.3.0</VersionPrefix>
88
<Authors>William Roush</Authors>
99
<AssemblyName>SparkPostDotNet</AssemblyName>
1010
<PackageId>SparkPostDotNet</PackageId>

src/SparkPostDotNet/Transmissions/Address.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@ public class Address
99

1010
[JsonProperty("name")]
1111
public string Name { get; set; }
12+
13+
[JsonProperty("header_to")]
14+
public string HeaderTo { get; set; }
1215
}
13-
}
16+
}

0 commit comments

Comments
 (0)