Skip to content

Commit

Permalink
use warnings, use v5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed Oct 26, 2019
1 parent 7cfb320 commit 6ce040c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/perl
use 5.006;
use strict;
use ExtUtils::MakeMaker;

Expand Down
4 changes: 4 additions & 0 deletions changes.pod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

=over 4

=item Version 3.032

Add "use warnings" and require v5.6

=item Version 3.031

Add an SSL option to connect to the SMTP relay via SSL on port 465. (thanks,
Expand Down
3 changes: 2 additions & 1 deletion lib/MIME/Lite.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package MIME::Lite;
use 5.006; ### for /c modifier in m/\G.../gc modifier
use strict;
require 5.004; ### for /c modifier in m/\G.../gc modifier
use warnings;

=head1 NAME
Expand Down

0 comments on commit 6ce040c

Please sign in to comment.