Skip to content

Commit c6badf9

Browse files
authored
Merge pull request #84 from puzza007/opt-21
Support OTP 21.0, remove 18.2 from supported versions
2 parents f28770b + 81fffc9 commit c6badf9

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ services:
88
- docker
99

1010
otp_release:
11-
- 18.2
1211
- 19.1
1312
- 20.0
1413
- 20.1
14+
- 21.0
1515

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

1818
cache:
1919
directories:

rebar.config

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,20 @@
22

33
{erl_opts, [debug_info]}.
44

5-
{minimum_otp_vsn, "18.0"}.
5+
{minimum_otp_vsn, "19.1"}.
66

77
{deps, [
88
{cowlib, "1.0.2"},
9-
{worker_pool, "3.1.0"},
10-
{metrics, "2.4.0"}
9+
{worker_pool, "3.1.1"},
10+
{metrics, "2.5.0"}
1111
]}.
1212

13-
{ct_opts, [{ct_hooks, [cth_readable_shell]}]}.
14-
1513
{profiles,
1614
[
1715
{test,
1816
[{deps,
19-
[{jsx, "2.7.2"},
20-
{meck, "0.8.7"},
17+
[{jsx, "2.9.0"},
18+
{meck, "0.8.10"},
2119
{cowboy, "1.0.0"},
2220
{http_proxy, ".*", {git, "https://github.com/puzza007/http_proxy.git", {branch, "rebar3"}}}
2321
]}]

rebar.lock

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{"1.1.0",
22
[{<<"cowlib">>,{pkg,<<"cowlib">>,<<"1.0.2">>},0},
3-
{<<"metrics">>,{pkg,<<"metrics">>,<<"2.4.0">>},0},
4-
{<<"worker_pool">>,{pkg,<<"worker_pool">>,<<"3.1.0">>},0}]}.
3+
{<<"metrics">>,
4+
{git,"https://github.com/voughtdq/erlang-metrics.git",
5+
{ref,"cc99b5be6afcd6bd3715fa23ed9ffd207cfb5996"}},
6+
0},
7+
{<<"worker_pool">>,{pkg,<<"worker_pool">>,<<"3.1.1">>},0}]}.
58
[
69
{pkg_hash,[
710
{<<"cowlib">>, <<"9D769A1D062C9C3AC753096F868CA121E2730B9A377DE23DEC0F7E08B1DF84EE">>},
8-
{<<"metrics">>, <<"8FFE3D9AADDFA26A1AA253A90958F02FC46B182007BCDB49919FB237A50D683A">>},
9-
{<<"worker_pool">>, <<"C908627E04057CF29940AD0E79B89AB161DB520EEBC76942EFD08A187BABF93A">>}]}
11+
{<<"worker_pool">>, <<"A9BF27CFF366999784A3F0657F016CE3A57901490858CCA3FB3BE1208BF2110D">>}]}
1012
].

src/katipo.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, 'katipo',
22
[{description, "HTTP client based on libcurl"},
3-
{vsn, "0.7.0"},
3+
{vsn, "0.7.1"},
44
{registered, []},
55
{mod, {'katipo_app', []}},
66
{applications,

0 commit comments

Comments
 (0)