Skip to content

Commit

Permalink
Merge pull request #84 from puzza007/opt-21
Browse files Browse the repository at this point in the history
Support OTP 21.0, remove 18.2 from supported versions
  • Loading branch information
puzza007 committed Sep 12, 2018
2 parents f28770b + 81fffc9 commit c6badf9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ services:
- docker

otp_release:
- 18.2
- 19.1
- 20.0
- 20.1
- 21.0

script: rebar3 update && rebar3 ct && rebar3 dialyzer && rebar3 coveralls send
script: rebar3 update && rebar3 ct --readable=false && rebar3 dialyzer && rebar3 coveralls send

cache:
directories:
Expand Down
12 changes: 5 additions & 7 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,20 @@

{erl_opts, [debug_info]}.

{minimum_otp_vsn, "18.0"}.
{minimum_otp_vsn, "19.1"}.

{deps, [
{cowlib, "1.0.2"},
{worker_pool, "3.1.0"},
{metrics, "2.4.0"}
{worker_pool, "3.1.1"},
{metrics, "2.5.0"}
]}.

{ct_opts, [{ct_hooks, [cth_readable_shell]}]}.

{profiles,
[
{test,
[{deps,
[{jsx, "2.7.2"},
{meck, "0.8.7"},
[{jsx, "2.9.0"},
{meck, "0.8.10"},
{cowboy, "1.0.0"},
{http_proxy, ".*", {git, "https://github.com/puzza007/http_proxy.git", {branch, "rebar3"}}}
]}]
Expand Down
10 changes: 6 additions & 4 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{"1.1.0",
[{<<"cowlib">>,{pkg,<<"cowlib">>,<<"1.0.2">>},0},
{<<"metrics">>,{pkg,<<"metrics">>,<<"2.4.0">>},0},
{<<"worker_pool">>,{pkg,<<"worker_pool">>,<<"3.1.0">>},0}]}.
{<<"metrics">>,
{git,"https://github.com/voughtdq/erlang-metrics.git",
{ref,"cc99b5be6afcd6bd3715fa23ed9ffd207cfb5996"}},
0},
{<<"worker_pool">>,{pkg,<<"worker_pool">>,<<"3.1.1">>},0}]}.
[
{pkg_hash,[
{<<"cowlib">>, <<"9D769A1D062C9C3AC753096F868CA121E2730B9A377DE23DEC0F7E08B1DF84EE">>},
{<<"metrics">>, <<"8FFE3D9AADDFA26A1AA253A90958F02FC46B182007BCDB49919FB237A50D683A">>},
{<<"worker_pool">>, <<"C908627E04057CF29940AD0E79B89AB161DB520EEBC76942EFD08A187BABF93A">>}]}
{<<"worker_pool">>, <<"A9BF27CFF366999784A3F0657F016CE3A57901490858CCA3FB3BE1208BF2110D">>}]}
].
2 changes: 1 addition & 1 deletion src/katipo.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, 'katipo',
[{description, "HTTP client based on libcurl"},
{vsn, "0.7.0"},
{vsn, "0.7.1"},
{registered, []},
{mod, {'katipo_app', []}},
{applications,
Expand Down

0 comments on commit c6badf9

Please sign in to comment.