Skip to content

Commit b1d0459

Browse files
committed
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.
1 parent c2454ea commit b1d0459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env perl
2-
use v5.14;
2+
use 5.014;
33
use strict;
44
use warnings;
55
use YAML::XS;

0 commit comments

Comments
 (0)