From 8a4bfa3ac5da3887c776e3188ce937ad391d9012 Mon Sep 17 00:00:00 2001 From: Justin Wood Date: Thu, 7 Feb 2019 09:20:26 -0500 Subject: Add plugin version to the output of rebar3 plugin list --- src/rebar_prv_plugins.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rebar_prv_plugins.erl b/src/rebar_prv_plugins.erl index fba5da0..00457a7 100644 --- a/src/rebar_prv_plugins.erl +++ b/src/rebar_prv_plugins.erl @@ -66,8 +66,8 @@ display_plugins(Apps, Plugins) -> is_tuple(Plugin) -> rebar_utils:to_binary(element(1, Plugin)) end, case rebar_app_utils:find(Name, Apps) of - {ok, _App} -> - ?CONSOLE("~ts", [Name]); + {ok, App} -> + ?CONSOLE("~ts (~s)", [Name, rebar_app_info:original_vsn(App)]); error -> ?DEBUG("Unable to find plugin ~ts", [Name]) end -- cgit v1.1 From ee4ecac27cc9273becf0f3f7e5309e3ebb79dbcb Mon Sep 17 00:00:00 2001 From: Justin Wood Date: Thu, 7 Feb 2019 09:24:01 -0500 Subject: Add myself to THANKS --- THANKS | 1 + 1 file changed, 1 insertion(+) diff --git a/THANKS b/THANKS index b9bfe3d..095a48b 100644 --- a/THANKS +++ b/THANKS @@ -142,3 +142,4 @@ Andrew McRobb Drew Varner Niklas Johansson Bryan Paxton +Justin Wood -- cgit v1.1