Skip to content

Commit

Permalink
0.1.4 - Update URL to use https (#6)
Browse files Browse the repository at this point in the history
* Update changelog and version

* Update url to https to avoid invalid XML redirect

* Update readme to account for latest version
  • Loading branch information
ryanflach authored Mar 19, 2020
1 parent e8528e0 commit d33c62b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 0.1.4 (2020-03-19)

##### Bug Fixes

* **vies-client:** Update url to https to avoid invalid XML redirect ([#5](https://github.com/taxjar/ex_vatcheck/pull/5))

#### 0.1.3 (2019-05-10)

##### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ by adding `ex_vatcheck` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:ex_vatcheck, "~> 0.1.0"}
{:ex_vatcheck, "~> 0.1.4"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/ex_vatcheck/vies_client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule ExVatcheck.VIESClient do

alias ExVatcheck.VIESClient.XMLParser

@wsdl_url "http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl"
@wsdl_url "https://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl"

defstruct [:url]

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 ExVatcheck.MixProject do
def project do
[
app: :ex_vatcheck,
version: "0.1.3",
version: "0.1.4",
elixir: "~> 1.4",
name: "ExVatcheck",
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down

0 comments on commit d33c62b

Please sign in to comment.