This avoids generating deprecation warnings.
package File::DosGlob;
-our $VERSION = '1.07';
+our $VERSION = '1.08';
use strict;
use warnings;
}
}
for ( @pat ) {
- s/\\{/{/g;
- s/\\}/}/g;
- s/\\,/,/g;
+ s/\\([{},])/$1/g;
}
#print join ("\n", @pat). "\n";
=item *
+L<File::DosGlob> has been upgraded from version 1.07 to 1.08.
+
+There are no visible changes, only minor internal refactorings.
+
+=item *
+
L<IO> has been upgraded from version 1.25_06 to version 1.25_07.
C<sync()> can now be called on read only file handles [perl #64772].