Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrino committed Feb 5, 2019
1 parent 6241987 commit 0de94fc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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}`

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 0de94fc

Please sign in to comment.