Subject: | VERSION not being set as expected |
The VERSION is defined with:
$VERSION = v0.1.5;
This means that the VERSION isn't being set, for example if I try to print it:
use Module::Finder;
print "version = ", $Module::Finder::VERSION, "\n";
version =
You could change this line to:
our $VERSION = '0.1.5';
Or if you want to use the v notation:
use version; our $VERSION = qv('v1.2.0');
(which I noticed when looking at the source for Module::Used)