Current section

42 Versions

Jump to

Compare versions

4 files changed
+7 additions
-10 deletions
  @@ -1,5 +1,7 @@
1 1 # Changelog
2 2
3 + ## 0.8.3
4 + * use `jason` only in dev and test envs (https://github.com/poanetwork/ex_abi/pull/180)
3 5 ## 0.8.2
4 6 * add compiler yecc and leex to fix warnings (https://github.com/poanetwork/ex_abi/pull/177)
5 7 * update ex_keccak to 0.7.6 (https://github.com/poanetwork/ex_abi/pull/178)
  @@ -10,7 +10,7 @@ by adding `ex_abi` and `ex_keccak` to your list of dependencies in `mix.exs`:
10 10 ```elixir
11 11 def deps do
12 12 [
13 - {:ex_abi, "~> 0.8.2"},
13 + {:ex_abi, "~> 0.8.3"},
14 14 {:ex_keccak, "~> 0.7.6"}
15 15 ]
16 16 end
  @@ -15,14 +15,9 @@
15 15 {<<"links">>,[{<<"GitHub">>,<<"https://github.com/poanetwork/ex_abi">>}]}.
16 16 {<<"name">>,<<"ex_abi">>}.
17 17 {<<"requirements">>,
18 - [[{<<"app">>,<<"jason">>},
19 - {<<"name">>,<<"jason">>},
20 - {<<"optional">>,false},
21 - {<<"repository">>,<<"hexpm">>},
22 - {<<"requirement">>,<<"~> 1.4">>}],
23 - [{<<"app">>,<<"ex_keccak">>},
18 + [[{<<"app">>,<<"ex_keccak">>},
24 19 {<<"name">>,<<"ex_keccak">>},
25 20 {<<"optional">>,true},
26 21 {<<"repository">>,<<"hexpm">>},
27 22 {<<"requirement">>,<<"~> 0.7.6">>}]]}.
28 - {<<"version">>,<<"0.8.2">>}.
23 + {<<"version">>,<<"0.8.3">>}.
  @@ -4,7 +4,7 @@ defmodule ABI.Mixfile do
4 4 def project do
5 5 [
6 6 app: :ex_abi,
7 - version: "0.8.2",
7 + version: "0.8.3",
8 8 elixir: "~> 1.8",
9 9 description: "Ethereum's ABI Interface",
10 10 package: [
  @@ -33,7 +33,7 @@ defmodule ABI.Mixfile do
33 33 {:credo, "~> 1.7", only: [:dev, :test], runtime: false},
34 34 {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
35 35 {:ex_doc, "~> 0.24", only: :dev, runtime: false},
36 - {:jason, "~> 1.4"},
36 + {:jason, "~> 1.4", only: [:test, :dev]},
37 37 {:ex_keccak, "~> 0.7.6", optional: true},
38 38 {:propcheck, "~> 1.4", only: [:test, :dev]}
39 39 ]