Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

0.3.0 #21

Merged
merged 4 commits into from
May 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.3.0
<sup>Released: 2018/05/20</sup>

- Add header_to support for address.
- Actually care about semver.

# 0.2.3
<sup>Released: 2018/03/06</sup>

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 William Roush
Copyright (c) 2016-2018 William Roush

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions src/SparkPostDotNet/SparkPostDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<Description>SparkPost Integration for .NET Core</Description>
<Copyright>William Roush 2016-2017</Copyright>
<Copyright>William Roush 2016-2018</Copyright>
<AssemblyTitle>SparkPostDotNet</AssemblyTitle>
<VersionPrefix>0.2.3</VersionPrefix>
<VersionPrefix>0.3.0</VersionPrefix>
<Authors>William Roush</Authors>
<AssemblyName>SparkPostDotNet</AssemblyName>
<PackageId>SparkPostDotNet</PackageId>
Expand Down
5 changes: 4 additions & 1 deletion src/SparkPostDotNet/Transmissions/Address.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ public class Address

[JsonProperty("name")]
public string Name { get; set; }

[JsonProperty("header_to")]
public string HeaderTo { get; set; }
}
}
}