Skip to content

Commit

Permalink
Merge pull request #44 from SparkPost/issue-43
Browse files Browse the repository at this point in the history
Accept broader Poison version to accommodate Phoenix
  • Loading branch information
ewandennis authored May 22, 2017
2 parents d6aa5e2 + df668f6 commit 01f1790
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Change Log

## v0.5.1 (2017/05/22)
- Poison dependency further relaxed to ~> 2.0 or ~> 3.0 to allow for Phoenix
- Removed unnecessary ibrowse mention from README

## v0.5.0 (2017/04/13)
- This release brought to you by the tireless @asgoel
- Core suppression list support
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ Capabilities include:
```elixir
def deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.2"},
{:sparkpost, "~> 0.5.0"}
{:sparkpost, "~> 0.5.1"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule SparkPost.Mixfile do

def project do
[app: :sparkpost,
version: "0.5.0",
version: "0.5.1",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand All @@ -26,7 +26,7 @@ defmodule SparkPost.Mixfile do
defp deps do
[
{:httpoison, "~> 0.9"},
{:poison, "~> 3.0"},
{:poison, "~> 2.0 or ~> 3.0"},
{:mock, "~> 0.2.0", only: :test},
{:excoveralls, "~> 0.5.7", only: :test},
{:credo, "~> 0.5.1", only: [:dev, :test]},
Expand Down

0 comments on commit 01f1790

Please sign in to comment.