Skip to content

Commit f9c0dd3

Browse files
committed
Bump version to 3.46
1 parent dcf54d1 commit f9c0dd3

27 files changed

+27
-27
lines changed

lib/Pod/Simple.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Pod::Simple::TiedOutFH;
1111
#use utf8;
1212

1313
our @ISA = ('Pod::Simple::BlackBox');
14-
our $VERSION = '3.44';
14+
our $VERSION = '3.46';
1515

1616
our @Known_formatting_codes = qw(I B C L E F S U X Z);
1717
our %Known_formatting_codes = map(($_=>1), @Known_formatting_codes);

lib/Pod/Simple/BlackBox.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use integer; # vroom!
2222
use strict;
2323
use warnings;
2424
use Carp ();
25-
our $VERSION = '3.44';
25+
our $VERSION = '3.46';
2626
#use constant DEBUG => 7;
2727

2828
sub my_qr ($$) {

lib/Pod/Simple/Checker.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use warnings;
88
use Carp ();
99
use Pod::Simple::Methody ();
1010
use Pod::Simple ();
11-
our $VERSION = '3.44';
11+
our $VERSION = '3.46';
1212
our @ISA = ('Pod::Simple::Methody');
1313
BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG)
1414
? \&Pod::Simple::DEBUG

lib/Pod/Simple/Debug.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Pod::Simple::Debug;
22
use strict;
3-
our $VERSION = '3.44';
3+
our $VERSION = '3.46';
44

55
sub import {
66
my($value,$variable);

lib/Pod/Simple/DumpAsText.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Pod::Simple::DumpAsText;
22
use strict;
3-
our $VERSION = '3.44';
3+
our $VERSION = '3.46';
44
use Pod::Simple ();
55
BEGIN { our @ISA = ('Pod::Simple')}
66

lib/Pod/Simple/DumpAsXML.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Pod::Simple::DumpAsXML;
22
use strict;
3-
our $VERSION = '3.44';
3+
our $VERSION = '3.46';
44
use Pod::Simple ();
55
BEGIN {our @ISA = ('Pod::Simple')}
66

lib/Pod/Simple/HTML.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use Pod::Simple::PullParser ();
55
our @ISA = ('Pod::Simple::PullParser');
6-
our $VERSION = '3.44';
6+
our $VERSION = '3.46';
77
BEGIN {
88
if(defined &DEBUG) { } # no-op
99
elsif( defined &Pod::Simple::DEBUG ) { *DEBUG = \&Pod::Simple::DEBUG }

lib/Pod/Simple/HTMLBatch.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Pod::Simple::HTMLBatch;
22
use strict;
3-
our $VERSION = '3.44';
3+
our $VERSION = '3.46';
44
our @ISA = (); # Yup, we're NOT a subclass of Pod::Simple::HTML!
55

66
# TODO: nocontents stylesheets. Strike some of the color variations?

lib/Pod/Simple/LinkSection.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package Pod::Simple::LinkSection;
44
use strict;
55
use warnings;
66
use Pod::Simple::BlackBox;
7-
our $VERSION = '3.44';
7+
our $VERSION = '3.46';
88

99
use overload( # So it'll stringify nice
1010
'""' => \&Pod::Simple::BlackBox::stringify_lol,

lib/Pod/Simple/Methody.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Pod::Simple::Methody;
22
use strict;
33
use warnings;
44
use Pod::Simple ();
5-
our $VERSION = '3.44';
5+
our $VERSION = '3.46';
66
our @ISA = ('Pod::Simple');
77

88
# Yes, we could use named variables, but I want this to be impose

0 commit comments

Comments
 (0)