Skip to content

Commit 7b0fbf0

Browse files
committed
Bump version
1 parent 3420feb commit 7b0fbf0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ my %WriteMakefileArgs = (
4242
"strict" => 0,
4343
"vars" => 0
4444
},
45-
"VERSION" => "3.74",
45+
"VERSION" => "3.75",
4646
"test" => {
4747
"TESTS" => "t/*.t"
4848
}

lib/HTML/Entities.pm

+1-1
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.74';
139+
our $VERSION = '3.75';
140140
use vars qw(%entity2char %char2entity);
141141

142142
require 5.004;

lib/HTML/Filter.pm

+1-1
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.74';
7+
our $VERSION = '3.75';
88

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

lib/HTML/HeadParser.pm

+1-1
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.74';
94+
our $VERSION = '3.75';
9595

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

lib/HTML/LinkExtor.pm

+1-1
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.74';
5+
our $VERSION = '3.75';
66

77
=head1 NAME
88

lib/HTML/PullParser.pm

+1-1
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.74';
7+
our $VERSION = '3.75';
88

99
use Carp ();
1010

lib/HTML/TokeParser.pm

+1-1
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.74';
7+
our $VERSION = '3.75';
88

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

0 commit comments

Comments
 (0)