Skip to content

Commit 0019223

Browse files
committed
Update to 3.47, including ChangeLog
1 parent f9c0dd3 commit 0019223

28 files changed

+31
-28
lines changed

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# ChangeLog for Pod::Simple dist
22
#---------------------------------------------------------------------------
3-
3.46 2025-05-xx Karl Williamson <[email protected]>
3+
3.47 2025-05-15 Karl Williamson <[email protected]>
4+
- No git-related files in MANIFEST James Keenan++
5+
- Rename method and field to avoid conflicts Graham Knop++
6+
3.46 2025-05-12 Karl Williamson <[email protected]>
47
- XHTML: =over without =item should render as a blockquote Graham Knop++
58
- Add support for underlined text U<> formatting Graham Knop++
69
- Make 'temp' name checking more succinct Max Maischein++

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.46';
14+
our $VERSION = '3.47';
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.46';
25+
our $VERSION = '3.47';
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.46';
11+
our $VERSION = '3.47';
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.46';
3+
our $VERSION = '3.47';
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.46';
3+
our $VERSION = '3.47';
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.46';
3+
our $VERSION = '3.47';
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.46';
6+
our $VERSION = '3.47';
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.46';
3+
our $VERSION = '3.47';
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.46';
7+
our $VERSION = '3.47';
88

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

0 commit comments

Comments
 (0)