Skip to content

Commit

Permalink
Release v1.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrino committed Feb 14, 2019
1 parent 430cec9 commit 82c0bc3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v1.0.0 🎉🎉🎉
### 🚀 Features
* Add `Soap.Response.parse/1` [#61]
* Add xsd parsing from external resources [#57]

### 🐛 Bug Fixes
* Fix bug when namespaces is empty [#60]

### 🧰 Maintenance
* Improve readme and documentation [#64]
* Code improvements (dependencies, credo, formatter) [#63]
* Add code coverage [#62]
* Add more documentation and maked some functions as private [#59]
* Add latest major versions elixir to CI [#58]

## v0.2.1
* Fix crash in parsing by reason of incorrect expression [#56]
* Update library dependencies [#55]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SOAP client for Elixir programming language

```elixir
def deps do
[{:soap, "~> 0.2"}]
[{:soap, "~> 1.0"}]
end
```
2) Add `soap` to the list of application dependencies(or just use extra_applications):
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.2.1",
version: "1.0.0",
elixir: "~> 1.4",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit 82c0bc3

Please sign in to comment.