Current section
4 Versions
Jump to
Current section
4 Versions
Compare versions
4
files changed
+4
additions
-4
deletions
| @@ -10,7 +10,7 @@ by adding `ex_uphold` to your list of dependencies in `mix.exs`: | |
| 10 10 | ```elixir |
| 11 11 | def deps do |
| 12 12 | [ |
| 13 | - {:ex_uphold, "~> 0.1.0"} |
| 13 | + {:ex_uphold, "~> 0.0.2"} |
| 14 14 | ] |
| 15 15 | end |
| 16 16 | ``` |
| @@ -25,4 +25,4 @@ | |
| 25 25 | {<<"optional">>,false}, |
| 26 26 | {<<"repository">>,<<"hexpm">>}, |
| 27 27 | {<<"requirement">>,<<"~> 1.15">>}]]}. |
| 28 | - {<<"version">>,<<"0.0.2">>}. |
| 28 | + {<<"version">>,<<"0.0.3">>}. |
| @@ -11,7 +11,7 @@ defmodule ExUphold.Api do | |
| 11 11 | def get_transaction_details(transaction_id) do |
| 12 12 | Tesla.get( |
| 13 13 | client(), |
| 14 | - "https://api.uphold.com/v0/reserve/transactions/#{transaction_id}" |
| 14 | + "v0/reserve/transactions/#{transaction_id}" |
| 15 15 | ) |
| 16 16 | |> prepare_response() |
| 17 17 | end |
| @@ -4,7 +4,7 @@ defmodule ExUphold.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :ex_uphold, |
| 7 | - version: "0.0.2", |
| 7 | + version: "0.0.3", |
| 8 8 | elixir: "~> 1.8", |
| 9 9 | build_embedded: Mix.env == :prod, |
| 10 10 | start_permanent: Mix.env() == :prod, |