This PR removes ver and auth from class App::Mi6:ver<1.1.5>:auth<cpan:SKAJI>.
Instead, it introduces a new method dist() which actually returns $?DISTRIBUTION
so that people inspect App-Mi6 distribution as they want.
For example, people can get version and auth by
use App::Mi6;
say App::Mi6.dist.meta<version>; # 1.1.5
say App::Mi6.dist.meta<auth>; # cpan:SKAJI
This PR removes ver and auth from
class App::Mi6:ver<1.1.5>:auth<cpan:SKAJI>
. Instead, it introduces a new methoddist()
which actually returns$?DISTRIBUTION
so that people inspect App-Mi6 distribution as they want.For example, people can get version and auth by