There are issues with <code>use English</code> in 0.14:
<pre>
#!/usr/bin/perl
use strict;
use warnings;
use English;
</pre>
yields:
<pre>
shell$ perlcritic -1 english.pl
Match variable used at line 4, column 1. See page 82 of PBP (Severity: 4)
</pre>
I have silenced other rants for this test (VERSION, etc.). Note that
<code>use English</code> is necessary to cope with another section of
PBP, namely the usage of punctuation variables (pag. 79 of PBP).