From 82c0bc394d696d073932f6f944dfd3a73676059f Mon Sep 17 00:00:00 2001 From: Petr Stepchenko Date: Thu, 14 Feb 2019 20:29:51 +0700 Subject: [PATCH] =?UTF-8?q?Release=20v1.0.0=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fc24be..0387639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/README.md b/README.md index fd37bcb..398316b 100644 --- a/README.md +++ b/README.md @@ -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): diff --git a/mix.exs b/mix.exs index c762789..b84b37e 100644 --- a/mix.exs +++ b/mix.exs @@ -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(),