Skip to content

Commit d6aa5e2

Browse files
authored
Merge pull request #41 from SparkPost/0.5.0
v0.5.0
2 parents 9e09202 + 476f925 commit d6aa5e2

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Change Log
22

3+
## v0.5.0 (2017/04/13)
4+
- This release brought to you by the tireless @asgoel
5+
- Core suppression list support
6+
- Poison dependency relaxed to ~> 3.0
7+
- Fixed an issue caused by a double slash in API URL
8+
39
## v0.4.0 (2017/02/28)
410
- Template preview support contributed by @asgoel - Thanks!
511

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Capabilities include:
2020
def deps do
2121
[
2222
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.2"},
23-
{:sparkpost, "~> 0.3.0"}
23+
{:sparkpost, "~> 0.5.0"}
2424
]
2525
end
2626
```

lib/suppression_list.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule SparkPost.SuppressionList do
99
or use the [SparkPost API reference](https://developers.sparkpost.com/api/suppression_list.html) for details.
1010
1111
Returned by `SparkPost.SuppressionList.delete/1`:
12-
- {:ok, ""}
12+
- \\{:ok, ""}
1313
1414
Returned by `SparkPost.SuppressionList.upsert_one/3`:
1515
- {:ok, message} (A success message string)

lib/transmission.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule SparkPost.Transmission do
22
@moduledoc """
33
The SparkPost Transmission API endpoint for sending email. Use `SparkPost.Transmission.send/1` to
4-
send messages, SparkPost.Transmission.list/1 to list previous sends and SparkPost.Transmission.get/1 to
4+
send messages, `SparkPost.Transmission.list/1` to list previous sends and `SparkPost.Transmission.get/1` to
55
retrieve details on a given transmission.
66
77
Check out the documentation for each function

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule SparkPost.Mixfile do
33

44
def project do
55
[app: :sparkpost,
6-
version: "0.4.0",
6+
version: "0.5.0",
77
elixir: "~> 1.2",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,

0 commit comments

Comments
 (0)