Skip to content

Commit 826f19a

Browse files
committed
Bump version
1 parent f121c75 commit 826f19a

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ my %WriteMakefileArgs = (
4141
"strict" => 0,
4242
"vars" => 0
4343
},
44-
"VERSION" => "3.75",
44+
"VERSION" => "3.76",
4545
"test" => {
4646
"TESTS" => "t/*.t"
4747
}

lib/HTML/Entities.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ modify it under the same terms as Perl itself.
136136
=cut
137137

138138
use strict;
139-
our $VERSION = '3.75';
139+
our $VERSION = '3.76';
140140
use vars qw(%entity2char %char2entity);
141141

142142
require 5.004;

lib/HTML/Filter.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44

55
require HTML::Parser;
66
our @ISA = qw(HTML::Parser);
7-
our $VERSION = '3.75';
7+
our $VERSION = '3.76';
88

99
sub declaration { $_[0]->output("<!$_[1]>") }
1010
sub process { $_[0]->output($_[2]) }

lib/HTML/HeadParser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ use HTML::Entities ();
9191
use strict;
9292
use vars qw($DEBUG);
9393
#$DEBUG = 1;
94-
our $VERSION = '3.75';
94+
our $VERSION = '3.76';
9595

9696
=item $hp = HTML::HeadParser->new
9797

lib/HTML/LinkExtor.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTML::LinkExtor;
22

33
require HTML::Parser;
44
our @ISA = qw(HTML::Parser);
5-
our $VERSION = '3.75';
5+
our $VERSION = '3.76';
66

77
=head1 NAME
88

lib/HTML/Parser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTML::Parser;
22

33
use strict;
44

5-
our $VERSION = '3.75';
5+
our $VERSION = '3.76';
66

77
require HTML::Entities;
88

lib/HTML/PullParser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44

55
require HTML::Parser;
66
our @ISA = qw(HTML::Parser);
7-
our $VERSION = '3.75';
7+
our $VERSION = '3.76';
88

99
use Carp ();
1010

lib/HTML/TokeParser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44

55
require HTML::PullParser;
66
our @ISA = qw(HTML::PullParser);
7-
our $VERSION = '3.75';
7+
our $VERSION = '3.76';
88

99
use Carp ();
1010
use HTML::Entities qw(decode_entities);

0 commit comments

Comments
 (0)