Skip to content

Commit

Permalink
Increment version number to 3.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Nov 12, 2010
1 parent c8873e4 commit 85b2a65
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
were stripped out but not the space between them (RT-56572).

2009-04-27
* Release 3.14
* Release 3.15

Removed explicit loading of UNIVERSAL. RJBS.

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=head1 Pod::Simple version 3.14
=head1 Pod::Simple version 3.15

Pod::Simple is a Perl library for parsing text in the Pod ("plain old
documentation") markup language that is typically used for writing
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use vars qw(
);

@ISA = ('Pod::Simple::BlackBox');
$VERSION = '3.14';
$VERSION = '3.15';

@Known_formatting_codes = qw(I B C L E F S X Z);
%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 @@ -23,7 +23,7 @@ use integer; # vroom!
use strict;
use Carp ();
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';
#use constant DEBUG => 7;
BEGIN {
require Pod::Simple;
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 @@ -9,7 +9,7 @@ use Carp ();
use Pod::Simple::Methody ();
use Pod::Simple ();
use vars qw( @ISA $VERSION );
$VERSION = '3.14';
$VERSION = '3.15';
@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
Expand Up @@ -3,7 +3,7 @@ require 5;
package Pod::Simple::Debug;
use strict;
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';

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,7 +1,7 @@

require 5;
package Pod::Simple::DumpAsText;
$VERSION = '3.14';
$VERSION = '3.15';
use Pod::Simple ();
BEGIN {@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,7 +1,7 @@

require 5;
package Pod::Simple::DumpAsXML;
$VERSION = '3.14';
$VERSION = '3.15';
use Pod::Simple ();
BEGIN {@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 @@ -10,7 +10,7 @@ use vars qw(
$Doctype_decl $Content_decl
);
@ISA = ('Pod::Simple::PullParser');
$VERSION = '3.14';
$VERSION = '3.15';

BEGIN {
if(defined &DEBUG) { } # no-op
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/HTMLBatch.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use vars qw( $VERSION $HTML_RENDER_CLASS $HTML_EXTENSION
$CSS $JAVASCRIPT $SLEEPY $SEARCH_CLASS @ISA
);
$VERSION = '3.14';
$VERSION = '3.15';
@ISA = (); # Yup, we're NOT a subclass of Pod::Simple::HTML!

# TODO: nocontents stylesheets. Strike some of the color variations?
Expand Down
4 changes: 2 additions & 2 deletions lib/Pod/Simple/LinkSection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ require 5;
package Pod::Simple::LinkSection;
# Based somewhat dimly on Array::Autojoin
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';

use strict;
use Pod::Simple::BlackBox;
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';

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 @@ -4,7 +4,7 @@ package Pod::Simple::Methody;
use strict;
use Pod::Simple ();
use vars qw(@ISA $VERSION);
$VERSION = '3.14';
$VERSION = '3.15';
@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
@@ -1,7 +1,7 @@

require 5;
package Pod::Simple::Progress;
$VERSION = '3.14';
$VERSION = '3.15';
use strict;

# Objects of this class are used for noting progress of an
Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/PullParser.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

require 5;
package Pod::Simple::PullParser;
$VERSION = '3.14';
$VERSION = '3.15';
use Pod::Simple ();
BEGIN {@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 @@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken ();
use strict;
use vars qw(@ISA $VERSION);
@ISA = ('Pod::Simple::PullParserToken');
$VERSION = '3.14';
$VERSION = '3.15';

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 @@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken ();
use strict;
use vars qw(@ISA $VERSION);
@ISA = ('Pod::Simple::PullParserToken');
$VERSION = '3.14';
$VERSION = '3.15';

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 @@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken ();
use strict;
use vars qw(@ISA $VERSION);
@ISA = ('Pod::Simple::PullParserToken');
$VERSION = '3.14';
$VERSION = '3.15';

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
Expand Up @@ -3,7 +3,7 @@ require 5;
package Pod::Simple::PullParserToken;
# Base class for tokens gotten from Pod::Simple::PullParser's $parser->get_token
@ISA = ();
$VERSION = '3.14';
$VERSION = '3.15';
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 @@ -8,7 +8,7 @@ package Pod::Simple::RTF;

use strict;
use vars qw($VERSION @ISA %Escape $WRAP %Tagmap);
$VERSION = '3.14';
$VERSION = '3.15';
use Pod::Simple::PullParser ();
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 @@ -4,7 +4,7 @@ package Pod::Simple::Search;
use strict;

use vars qw($VERSION $MAX_VERSION_WITHIN $SLEEPY);
$VERSION = '3.14'; ## Current version of this package
$VERSION = '3.15'; ## 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 @@ -6,7 +6,7 @@ use strict;
use Carp ();
use Pod::Simple ();
use vars qw( $ATTR_PAD @ISA $VERSION $SORT_ATTRS);
$VERSION = '3.14';
$VERSION = '3.15';
BEGIN {
@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 @@ -6,7 +6,7 @@ use Carp ();
use Pod::Simple::Methody ();
use Pod::Simple ();
use vars qw( @ISA $VERSION $FREAKYMODE);
$VERSION = '3.14';
$VERSION = '3.15';
@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 @@ -6,7 +6,7 @@ use strict;
use Carp ();
use Pod::Simple ();
use vars qw( @ISA $VERSION );
$VERSION = '3.14';
$VERSION = '3.15';
@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 @@ -4,7 +4,7 @@ package Pod::Simple::TiedOutFH;
use Symbol ('gensym');
use Carp ();
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/Pod/Simple/Transcode.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 5;
package Pod::Simple::Transcode;
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';

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
Expand Up @@ -5,7 +5,7 @@ require 5;
package Pod::Simple::TranscodeDumb;
use strict;
use vars qw($VERSION %Supported);
$VERSION = '3.14';
$VERSION = '3.15';
# 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 @@ -9,7 +9,7 @@ use strict;
use Pod::Simple;
require Encode;
use vars qw($VERSION );
$VERSION = '3.14';
$VERSION = '3.15';

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 @@ -28,7 +28,7 @@ L<Pod::Simple::HTML>, but it largely preserves the same interface.
package Pod::Simple::XHTML;
use strict;
use vars qw( $VERSION @ISA $HAS_HTML_ENTITIES );
$VERSION = '3.14';
$VERSION = '3.15';
use Carp ();
use Pod::Simple::Methody ();
@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 @@ -5,7 +5,7 @@ use strict;
use Carp ();
use Pod::Simple ();
use vars qw( $ATTR_PAD @ISA $VERSION $SORT_ATTRS);
$VERSION = '3.14';
$VERSION = '3.15';
BEGIN {
@ISA = ('Pod::Simple');
*DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG;
Expand Down

0 comments on commit 85b2a65

Please sign in to comment.