From 7359512f3b91d52e25aca340e7dd4901d6ad51bc Mon Sep 17 00:00:00 2001 From: Ayrat Badykov Date: Thu, 18 Oct 2018 15:33:44 +0300 Subject: [PATCH 1/2] update common tests submodule --- README.md | 2 +- mix.exs | 10 +++++----- mix.lock | 12 ++++++++---- test/support/ethereum_common_tests | 2 +- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8df948e..96c0af9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add `:ex_rlp` as a dependency to your project's `mix.exs`: ```elixir defp deps do [ - {:ex_rlp, "~> 0.3.0"} + {:ex_rlp, "~> 0.3.1"} ] end ``` diff --git a/mix.exs b/mix.exs index ba94658..f0f63e2 100644 --- a/mix.exs +++ b/mix.exs @@ -4,8 +4,8 @@ defmodule ExRLP.Mixfile do def project do [ app: :ex_rlp, - version: "0.3.0", - elixir: "~> 1.6", + version: "0.3.1", + elixir: "~> 1.7", description: "Ethereum's Recursive Length Prefix (RLP) encoding", package: [ maintainers: ["Ayrat Badykov", "Geoffrey Hayes"], @@ -26,10 +26,10 @@ defmodule ExRLP.Mixfile do defp deps do [ - {:credo, "~> 0.9.1", only: [:dev, :test], runtime: false}, - {:ex_doc, "~> 0.16", only: :dev, runtime: false}, + {:credo, "~> 0.10.2", only: [:dev, :test], runtime: false}, + {:ex_doc, "~> 0.19", only: :dev, runtime: false}, {:dialyxir, "~> 0.5", only: [:dev], runtime: false}, - {:poison, "~> 3.1.0", only: [:dev, :test], runtime: false} + {:poison, "~> 4.0.1", only: [:dev, :test], runtime: false} ] end diff --git a/mix.lock b/mix.lock index 98ad449..20bb55c 100644 --- a/mix.lock +++ b/mix.lock @@ -1,8 +1,12 @@ %{ "bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], [], "hexpm"}, - "credo": {:hex, :credo, "0.9.1", "f021affa11b32a94dc2e807a6472ce0914289c9132f99644a97fc84432b202a1", [:mix], [{:bunt, "~> 0.2.0", [hex: :bunt, repo: "hexpm", optional: false]}, {:poison, ">= 0.0.0", [hex: :poison, repo: "hexpm", optional: false]}], "hexpm"}, + "credo": {:hex, :credo, "0.10.2", "03ad3a1eff79a16664ed42fc2975b5e5d0ce243d69318060c626c34720a49512", [:mix], [{:bunt, "~> 0.2.0", [hex: :bunt, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm"}, "dialyxir": {:hex, :dialyxir, "0.5.1", "b331b091720fd93e878137add264bac4f644e1ddae07a70bf7062c7862c4b952", [:mix], [], "hexpm"}, - "earmark": {:hex, :earmark, "1.2.2", "f718159d6b65068e8daeef709ccddae5f7fdc770707d82e7d126f584cd925b74", [:mix], [], "hexpm"}, - "ex_doc": {:hex, :ex_doc, "0.16.1", "b4b8a23602b4ce0e9a5a960a81260d1f7b29635b9652c67e95b0c2f7ccee5e81", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"}, - "poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], [], "hexpm"}, + "earmark": {:hex, :earmark, "1.2.6", "b6da42b3831458d3ecc57314dff3051b080b9b2be88c2e5aa41cd642a5b044ed", [:mix], [], "hexpm"}, + "ex_doc": {:hex, :ex_doc, "0.19.1", "519bb9c19526ca51d326c060cb1778d4a9056b190086a8c6c115828eaccea6cf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.7", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm"}, + "jason": {:hex, :jason, "1.1.1", "d3ccb840dfb06f2f90a6d335b536dd074db748b3e7f5b11ab61d239506585eb2", [:mix], [{:decimal, "~> 1.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm"}, + "makeup": {:hex, :makeup, "0.5.5", "9e08dfc45280c5684d771ad58159f718a7b5788596099bdfb0284597d368a882", [:mix], [{:nimble_parsec, "~> 0.4", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"}, + "makeup_elixir": {:hex, :makeup_elixir, "0.10.0", "0f09c2ddf352887a956d84f8f7e702111122ca32fbbc84c2f0569b8b65cbf7fa", [:mix], [{:makeup, "~> 0.5.5", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"}, + "nimble_parsec": {:hex, :nimble_parsec, "0.4.0", "ee261bb53214943679422be70f1658fff573c5d0b0a1ecd0f18738944f818efe", [:mix], [], "hexpm"}, + "poison": {:hex, :poison, "4.0.1", "bcb755a16fac91cad79bfe9fc3585bb07b9331e50cfe3420a24bcc2d735709ae", [:mix], [], "hexpm"}, } diff --git a/test/support/ethereum_common_tests b/test/support/ethereum_common_tests index 1b019db..262f787 160000 --- a/test/support/ethereum_common_tests +++ b/test/support/ethereum_common_tests @@ -1 +1 @@ -Subproject commit 1b019db88522abacfbd7ca03382f2bbffa5ae8f0 +Subproject commit 262f787d154bf35625a3b87f31c4132567a79456 From fc4bc2b31a70ce61a44860be11aacd376647d8bf Mon Sep 17 00:00:00 2001 From: Ayrat Badykov Date: Thu, 18 Oct 2018 15:43:50 +0300 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fecc3fc..9f071d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# 0.3.1 +* Upgrade elixir version. (https://github.com/exthereum/ex_rlp/pull/14) # 0.3.0 * Remove protocols for Map because it overrides custom struct protocols. (https://github.com/exthereum/ex_rlp/pull/12) # 0.2.1