Subject: | The VERSION of HTML::Mason is incorrect due to Dist::Zilla misuse |
The content of an installed 1.50 version has this in HTML::Mason:
cat <<EOF;
package HTML::Mason;
BEGIN {
$HTML::Mason::VERSION = '1.50';
}
# Copyright (c) 1998-2005 by Jonathan Swartz. All rights reserved.
# This program is free software; you can redistribute it and/or modify
it
# under the same terms as Perl itself.
use 5.006;
$HTML::Mason::VERSION = '1.49';
EOF
So it'll report itself as 1.49. That hardcoded second version should be
removed.