Codebase list erlang-p1-tls / 56780ed
Merge tag 'upstream/1.0.7' Upstream version 1.0.7 Philipp Huebner 7 years ago
4 changed file(s) with 10 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 # Version 1.0.7
1
2 * Use p1_utils 1.0.5 (Mickaël Rémond)
3 * Do not log warning on sha1 nif reload attempt (Mickaël Rémond)
4
05 # Version 1.0.6
16
27 * Fix compilation on rebar3 (Paweł Chmielowski)
3
48
59 # Version 1.0.5
610
2626 {port_specs, [{"priv/lib/fast_tls_drv.so", ["c_src/fast_tls_drv.c"]},
2727 {"priv/lib/p1_sha.so", ["c_src/p1_sha.c"]}]}.
2828
29 {deps, [{p1_utils, ".*", {git, "git://github.com/processone/p1_utils", {tag, "1.0.4"}}}]}.
29 {deps, [{p1_utils, ".*", {git, "git://github.com/processone/p1_utils", {tag, "1.0.5"}}}]}.
3030
3131 {clean_files, ["c_src/fast_tls_drv.gcda", "c_src/fast_tls_drv.gcno",
3232 "c_src/fast_sha.gcda", "c_src/fast_sha.gcno"]}.
2222
2323 {application, fast_tls,
2424 [{description, "TLS / SSL OpenSSL-based native driver for Erlang / Elixir"},
25 {vsn, "1.0.6"},
25 {vsn, "1.0.7"},
2626 {modules, []},
2727 {registered, []},
2828 {applications, [kernel, stdlib]},
3939 SOPath = p1_nif_utils:get_so_path(?MODULE, [fast_tls], "p1_sha"),
4040 case catch erlang:load_nif(SOPath, 0) of
4141 ok ->
42 ok;
43 {error, {reload, _}} ->
44 %% Do not log warning when just attempting to reload nif.
4245 ok;
4346 Err ->
4447 error_logger:warning_msg("unable to load sha NIF: ~p~n", [Err]),