From e65c7762f8740ad61ec681245d0cc42c15aab7e2 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Gauthier Date: Sun, 30 Jul 2023 15:26:24 -0400 Subject: [PATCH 1/4] Remove rebar2 compatibility hack --- rebar.config.script | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 rebar.config.script diff --git a/rebar.config.script b/rebar.config.script deleted file mode 100644 index c8e7242..0000000 --- a/rebar.config.script +++ /dev/null @@ -1,13 +0,0 @@ -case erlang:function_exported(rebar3, main, 1) of - true -> - CONFIG; - false -> - [{deps, [ - {foil, ".*", - {git, "https://github.com/lpgauth/foil.git", {tag, "0.1.3"}}}, - {granderl, ".*", - {git, "https://github.com/tokenrove/granderl.git", {ref, "baafd1bc825cb1fc022760eae913f774fa6af91b"}}}, - {metal, ".*", - {git, "https://github.com/lpgauth/metal.git", {tag, "0.1.1"}}} - ]} | lists:keydelete(deps, 1, CONFIG)] -end. From 7a1de5e319ffd5d6672bd2909dad9c56fc20391c Mon Sep 17 00:00:00 2001 From: Louis-Philippe Gauthier Date: Sun, 30 Jul 2023 15:39:35 -0400 Subject: [PATCH 2/4] Cleanup rebar.config --- rebar.config | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/rebar.config b/rebar.config index 5527149..ee4433a 100644 --- a/rebar.config +++ b/rebar.config @@ -13,11 +13,6 @@ {dialyzer, [{plt_extra_apps, [public_key]}]}. -{edoc_opts, [ - {includes, ["include"]}, - {preprocess, true} -]}. - {ex_doc, [ {api_reference, false}, {extras, ["README.md"]}, @@ -37,7 +32,7 @@ {plugins, [rebar3_hex, rebar3_ex_doc]}. {hex, [ - {doc, #{provider => ex_doc}} + {doc, #{provider => ex_doc}} ]}. {profiles, [ From 5fb6bb686d15c995f7cc3e3831e139d4604aff84 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Gauthier Date: Sun, 30 Jul 2023 15:44:35 -0400 Subject: [PATCH 3/4] Bump LICENSE year --- LICENSE | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index d4c97a8..d2dfa31 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015-2020 Louis-Philippe Gauthier +Copyright (c) 2015-2023 Louis-Philippe Gauthier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ffde1d4..8864228 100644 --- a/README.md +++ b/README.md @@ -272,7 +272,7 @@ make profile ```license The MIT License (MIT) -Copyright (c) 2015-2020 Louis-Philippe Gauthier +Copyright (c) 2015-2023 Louis-Philippe Gauthier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 077992e1c55ec07ac236342b47f4008d0c291499 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Gauthier Date: Tue, 1 Aug 2023 13:20:17 -0400 Subject: [PATCH 4/4] Remove edoc target --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index e9f9926..5271059 100644 --- a/Makefile +++ b/Makefile @@ -23,10 +23,6 @@ dialyzer: @echo "Running rebar3 dialyze..." @$(REBAR3) dialyzer -edoc: - @echo "Running rebar3 edoc..." - @$(REBAR3) as edoc edoc - eunit: @echo "Running rebar3 eunit..." @$(REBAR3) do eunit -cv, cover -v @@ -44,4 +40,4 @@ xref: @echo "Running rebar3 xref..." @$(REBAR3) xref -.PHONY: bench clean compile dialyzer edoc eunit profile xref +.PHONY: bench clean compile dialyzer eunit profile xref