Skip to content

Commit d010aef

Browse files
committed
Bump version
1 parent 60bfd13 commit d010aef

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ my %WriteMakefileArgs = (
3737
"URI" => 0,
3838
"strict" => 0
3939
},
40-
"VERSION" => "3.82",
40+
"VERSION" => "3.83",
4141
"test" => {
4242
"TESTS" => "t/*.t"
4343
}

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.82';
139+
our $VERSION = '3.83';
140140
our (%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.82';
7+
our $VERSION = '3.83';
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
our $DEBUG;
9393
#$DEBUG = 1;
94-
our $VERSION = '3.82';
94+
our $VERSION = '3.83';
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.82';
5+
our $VERSION = '3.83';
66

77
=head1 NAME
88

lib/HTML/Parser.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTML::Parser;
22

33
use strict;
44

5-
our $VERSION = '3.82';
5+
our $VERSION = '3.83';
66

77
require HTML::Entities;
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.82';
7+
our $VERSION = '3.83';
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.82';
7+
our $VERSION = '3.83';
88

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

0 commit comments

Comments
 (0)