From bf0270568ff74ad348423b98000f79a1a22770d2 Mon Sep 17 00:00:00 2001 From: Serge Aleynikov Date: Wed, 25 Oct 2023 19:30:41 -0400 Subject: [PATCH] Update docs --- rebar.config | 4 +++- src/etran.app.src | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 2badfce..88b9ab4 100644 --- a/rebar.config +++ b/rebar.config @@ -1,7 +1,7 @@ {erl_opts, [debug_info, warn_export_all]}. {erl_first_files, ["etran_util.erl", "erlpipe.erl"]}. -{plugins, [rebar3_hex, rebar3_ex_doc]}. +{project_plugins, [rebar3_hex, rebar3_ex_doc]}. {edoc_opts, [{title, "Collection of Erlang parse transforms"}, {overview, "build-aux/overview.edoc"}, @@ -12,6 +12,8 @@ {eunit_compile_opts, [{d,str_i2l},{d,str_b2l}]}. +{hex, [{doc, ex_doc}]}. + {ex_doc, [ {extras, [ {"README.md", #{title => "Overview"}}, diff --git a/src/etran.app.src b/src/etran.app.src index 2f229a1..ac485cc 100644 --- a/src/etran.app.src +++ b/src/etran.app.src @@ -2,5 +2,5 @@ [{description,"Erlang Parse Transoforms"}, {vsn,"0.5.1"}, {applications,[kernel,stdlib]}, - {licenses,["BSD"]}, + {licenses,["MIT"]}, {links,[{"Github","https://github.com/saleyn/etran"}]}]}.