add applications to remove warnings when making a release
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9bd55b6..ac052e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## v0.3.4
+
+[bug fix]
+- Added `:poison` to list of applications to remove
+warnings when making a release.
## v0.3.3
diff --git a/mix.exs b/mix.exs
index 2cad421..c8e56ed 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,6 +1,6 @@
defmodule ExOvh.Mixfile do
use Mix.Project
- @version "0.3.3"
+ @version "0.3.4"
@elixir "~> 1.3 or ~> 1.4 or ~> 1.5"
def project do
@@ -21,7 +21,7 @@ defmodule ExOvh.Mixfile do
def application() do
[
- applications: [:calendar, :crypto, :hackney, :logger]
+ applications: [:calendar, :crypto, :hackney, :logger, :poison]
]
end