generate.pl: prefer to use VERSION with numeric form

As stated in `perldoc -f use`, using a v-string literal should be
avoided in favor of numeric form for backwards compatibility.
This commit is contained in:
Zak B. Elep 2018-04-19 21:39:16 +08:00
parent c2454eadb0
commit b1d0459e7a

View file

@ -1,5 +1,5 @@
#!/usr/bin/env perl
use v5.14;
use 5.014;
use strict;
use warnings;
use YAML::XS;