Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# ChangeLog for Pod::Simple dist
#---------------------------------------------------------------------------
3.44 2022-xx-yy Karl Williamson <[email protected]>
3.47 2025-05-15 Karl Williamson <[email protected]>
- No git-related files in MANIFEST James Keenan++
- Rename method and field to avoid conflicts Graham Knop++
3.46 2025-05-12 Karl Williamson <[email protected]>
- XHTML: =over without =item should render as a blockquote Graham Knop++
- Add support for underlined text U<> formatting Graham Knop++
- Make 'temp' name checking more succinct Max Maischein++
- github: fix and add tests Lukas Mai++ rwp0++
- Makefile.PL: add missing 'warnings' prereq Lukas Mai++
- Add select method compatible with Pod::Select Graham Knop++
- Modernize htmlbat.t, corpus.t Lukas Mai++, Graham Knop++
- Fix links, typos, acknowledgments James Keenan++ rwp0++, Dan Book++
- Add documentation on sublcassing Graham Knop++
- Fix version checking Philippe Bruhat++
- Fix version number Thibault Duponchelle++
- Use rel2abs instead of abs_path Andrew Fresh++
3.45 2023-05-14 Karl Williamson <[email protected]>
- fix precedence issue in PullParser mauke++
- minor parallelism fixes to test files yves++
- refactor XHTML index generation into own method Graham Knop++
- fix tab expansion when not 0 nor 8 Graham Knop++
- various fixes to links Graham Knop++
3.44 2022-05-26 Karl Williamson <[email protected]>
- Use Test::More and cleanup tests Graham Knop++
- reorganize Makefile.PL warnings Graham Knop++
- use warnings Graham Knop++
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Pod::Simple::TiedOutFH;
#use utf8;

our @ISA = ('Pod::Simple::BlackBox');
our $VERSION = '3.44';
our $VERSION = '3.47';

our @Known_formatting_codes = qw(I B C L E F S U X Z);
our %Known_formatting_codes = map(($_=>1), @Known_formatting_codes);
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/BlackBox.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use integer; # vroom!
use strict;
use warnings;
use Carp ();
our $VERSION = '3.44';
our $VERSION = '3.47';
#use constant DEBUG => 7;

sub my_qr ($$) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Checker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use warnings;
use Carp ();
use Pod::Simple::Methody ();
use Pod::Simple ();
our $VERSION = '3.44';
our $VERSION = '3.47';
our @ISA = ('Pod::Simple::Methody');
BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG)
? \&Pod::Simple::DEBUG
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Debug.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::Debug;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';

sub import {
my($value,$variable);
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/DumpAsText.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::DumpAsText;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';
use Pod::Simple ();
BEGIN { our @ISA = ('Pod::Simple')}

Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/DumpAsXML.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::DumpAsXML;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';
use Pod::Simple ();
BEGIN {our @ISA = ('Pod::Simple')}

Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/HTML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Pod::Simple::PullParser ();
our @ISA = ('Pod::Simple::PullParser');
our $VERSION = '3.44';
our $VERSION = '3.47';
BEGIN {
if(defined &DEBUG) { } # no-op
elsif( defined &Pod::Simple::DEBUG ) { *DEBUG = \&Pod::Simple::DEBUG }
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/HTMLBatch.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::HTMLBatch;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';
our @ISA = (); # Yup, we're NOT a subclass of Pod::Simple::HTML!

# TODO: nocontents stylesheets. Strike some of the color variations?
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/LinkSection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package Pod::Simple::LinkSection;
use strict;
use warnings;
use Pod::Simple::BlackBox;
our $VERSION = '3.44';
our $VERSION = '3.47';

use overload( # So it'll stringify nice
'""' => \&Pod::Simple::BlackBox::stringify_lol,
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Methody.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Pod::Simple::Methody;
use strict;
use warnings;
use Pod::Simple ();
our $VERSION = '3.44';
our $VERSION = '3.47';
our @ISA = ('Pod::Simple');

# Yes, we could use named variables, but I want this to be impose
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Progress.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Pod::Simple::Progress;
use strict;
use warnings;

our $VERSION = '3.44';
our $VERSION = '3.47';

# Objects of this class are used for noting progress of an
# operation every so often. Messages delivered more often than that
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/PullParser.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::PullParser;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';
use Pod::Simple ();
BEGIN {our @ISA = ('Pod::Simple')}

Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/PullParserEndToken.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Pod::Simple::PullParserToken ();
our @ISA = ('Pod::Simple::PullParserToken');
our $VERSION = '3.44';
our $VERSION = '3.47';

sub new { # Class->new(tagname);
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/PullParserStartToken.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Pod::Simple::PullParserToken ();
our @ISA = ('Pod::Simple::PullParserToken');
our $VERSION = '3.44';
our $VERSION = '3.47';

sub new { # Class->new(tagname, optional_attrhash);
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/PullParserTextToken.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Pod::Simple::PullParserToken ();
our @ISA = ('Pod::Simple::PullParserToken');
our $VERSION = '3.44';
our $VERSION = '3.47';

sub new { # Class->new(text);
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/PullParserToken.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Pod::Simple::PullParserToken;
# Base class for tokens gotten from Pod::Simple::PullParser's $parser->get_token
our @ISA = ();
our $VERSION = '3.44';
our $VERSION = '3.47';
use strict;

sub new { # Class->new('type', stuff...); ## Overridden in derived classes anyway
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/RTF.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
#sub Pod::Simple::DEBUG () {4};
#sub Pod::Simple::PullParser::DEBUG () {4};

our $VERSION = '3.44';
our $VERSION = '3.47';
use Pod::Simple::PullParser ();
our @ISA;
BEGIN {@ISA = ('Pod::Simple::PullParser')}
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Search.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Pod::Simple::Search;
use strict;
use warnings;

our $VERSION = '3.44'; ## Current version of this package
our $VERSION = '3.47'; ## Current version of this package

BEGIN { *DEBUG = sub () {0} unless defined &DEBUG; } # set DEBUG level
use Carp ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/SimpleTree.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Carp ();
use Pod::Simple ();
our $VERSION = '3.44';
our $VERSION = '3.47';
BEGIN {
our @ISA = ('Pod::Simple');
*DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG;
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Text.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use Carp ();
use Pod::Simple::Methody ();
use Pod::Simple ();
our $VERSION = '3.44';
our $VERSION = '3.47';
our @ISA = ('Pod::Simple::Methody');
BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG)
? \&Pod::Simple::DEBUG
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/TextContent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Carp ();
use Pod::Simple ();
our $VERSION = '3.44';
our $VERSION = '3.47';
our @ISA = ('Pod::Simple');

sub new {
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/TiedOutFH.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Symbol ('gensym');
use Carp ();
our $VERSION = '3.44';
our $VERSION = '3.47';

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Transcode.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::Transcode;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';

BEGIN {
if(defined &DEBUG) {;} # Okay
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/TranscodeDumb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Pod::Simple::TranscodeDumb;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';
# This module basically pretends it knows how to transcode, except
# only for null-transcodings! We use this when Encode isn't
# available.
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/TranscodeSmart.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use strict;
use warnings;
use Pod::Simple;
use Encode;
our $VERSION = '3.44';
our $VERSION = '3.47';

sub is_dumb {0}
sub is_smart {1}
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/XHTML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use warnings;

package Pod::Simple::XHTML;
use strict;
our $VERSION = '3.44';
our $VERSION = '3.47';
use Pod::Simple::Methody ();
our @ISA = ('Pod::Simple::Methody');

Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/XMLOutStream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Carp ();
use Pod::Simple ();
our $VERSION = '3.44';
our $VERSION = '3.47';
BEGIN {
our @ISA = ('Pod::Simple');
*DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG;
Expand Down