Skip to content

Commit

Permalink
Docs clean up, version bump: 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ewandennis committed Apr 13, 2017
1 parent 9e09202 commit 476f925
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
## Change Log

## v0.5.0 (2017/04/13)
- This release brought to you by the tireless @asgoel
- Core suppression list support
- Poison dependency relaxed to ~> 3.0
- Fixed an issue caused by a double slash in API URL

## v0.4.0 (2017/02/28)
- Template preview support contributed by @asgoel - Thanks!

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@ Capabilities include:
def deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.2"},
{:sparkpost, "~> 0.3.0"}
{:sparkpost, "~> 0.5.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/suppression_list.ex
Expand Up @@ -9,7 +9,7 @@ defmodule SparkPost.SuppressionList do
or use the [SparkPost API reference](https://developers.sparkpost.com/api/suppression_list.html) for details.
Returned by `SparkPost.SuppressionList.delete/1`:
- {:ok, ""}
- \\{:ok, ""}
Returned by `SparkPost.SuppressionList.upsert_one/3`:
- {:ok, message} (A success message string)
Expand Down
2 changes: 1 addition & 1 deletion lib/transmission.ex
@@ -1,7 +1,7 @@
defmodule SparkPost.Transmission do
@moduledoc """
The SparkPost Transmission API endpoint for sending email. Use `SparkPost.Transmission.send/1` to
send messages, SparkPost.Transmission.list/1 to list previous sends and SparkPost.Transmission.get/1 to
send messages, `SparkPost.Transmission.list/1` to list previous sends and `SparkPost.Transmission.get/1` to
retrieve details on a given transmission.
Check out the documentation for each function
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -3,7 +3,7 @@ defmodule SparkPost.Mixfile do

def project do
[app: :sparkpost,
version: "0.4.0",
version: "0.5.0",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down

0 comments on commit 476f925

Please sign in to comment.