diff --git a/CHANGELOG.md b/CHANGELOG.md index 8701abe..93ad10d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v0.2.0 +* Add MIT license [#53] +* Feat/soap headers [#50] +* Support for different SOAP version for different WSDL files [#49] +* Support WSDL files with WSDL namespace being root [#46] +* Skip params validation if prebuilt XML given [#45] + +## v0.1.2 +* Update HTTPoison [#44] + ## v0.1.1 * Now `Soap.call/4` returns its own response structure `%Soap.Response{body: nil, headers: [], request_url: nil, status_code: nil}` diff --git a/README.md b/README.md index ab8e300..59f5e29 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Pure Elixir implementation of SOAP client ```elixir def deps do - [{:soap, "~> 0.1.1"}] + [{:soap, "~> 0.2"}] end ``` 2) Add `soap` to the list of application dependencies diff --git a/mix.exs b/mix.exs index 29862d4..6215669 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Soap.MixProject do def project do [ app: :soap, - version: "0.1.2", + version: "0.2.0", elixir: "~> 1.4", start_permanent: Mix.env() == :prod, deps: deps(),