Skip to content

Commit a3fda9a

Browse files
committed
3.76
* Add a fix for a stack confusion error on `eof`. (GH#21) (Matthew Horsfall and Chase Whitener)
1 parent 873322b commit a3fda9a

4 files changed

Lines changed: 25 additions & 21 deletions

File tree

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Change history for HTML-Parser
22

33
{{$NEXT}}
4+
5+
3.76 2021-03-04
46
* Add a fix for a stack confusion error on `eof`. (GH#21) (Matthew Horsfall
57
and Chase Whitener)
68

META.json

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Gisle Aas <gaas@cpan.org>"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Dist::Zilla version 6.014, CPAN::Meta::Converter version 2.150010",
7+
"generated_by" : "Dist::Zilla version 6.017, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"perl_5"
1010
],
@@ -65,7 +65,7 @@
6565
"URI::URL" : "0",
6666
"XSLoader" : "0",
6767
"perl" : "5.008",
68-
"strict" : "0",
68+
"strict" : "0"
6969
}
7070
},
7171
"test" : {
@@ -83,54 +83,54 @@
8383
"Test::More" : "0",
8484
"URI" : "0",
8585
"perl" : "5.008",
86-
"strict" : "0",
86+
"strict" : "0"
8787
}
8888
}
8989
},
9090
"provides" : {
9191
"HTML::Entities" : {
9292
"file" : "lib/HTML/Entities.pm",
93-
"version" : "3.75"
93+
"version" : "3.76"
9494
},
9595
"HTML::Filter" : {
9696
"file" : "lib/HTML/Filter.pm",
97-
"version" : "3.75",
97+
"version" : "3.76",
9898
"x_deprecated" : 1
9999
},
100100
"HTML::HeadParser" : {
101101
"file" : "lib/HTML/HeadParser.pm",
102-
"version" : "3.75"
102+
"version" : "3.76"
103103
},
104104
"HTML::LinkExtor" : {
105105
"file" : "lib/HTML/LinkExtor.pm",
106-
"version" : "3.75"
106+
"version" : "3.76"
107107
},
108108
"HTML::Parser" : {
109109
"file" : "lib/HTML/Parser.pm",
110-
"version" : "3.75"
110+
"version" : "3.76"
111111
},
112112
"HTML::PullParser" : {
113113
"file" : "lib/HTML/PullParser.pm",
114-
"version" : "3.75"
114+
"version" : "3.76"
115115
},
116116
"HTML::TokeParser" : {
117117
"file" : "lib/HTML/TokeParser.pm",
118-
"version" : "3.75"
118+
"version" : "3.76"
119119
}
120120
},
121121
"release_status" : "stable",
122122
"resources" : {
123123
"bugtracker" : {
124-
"web" : "https://github.com/libwww-perl/html-parser/issues"
124+
"web" : "https://github.com/libwww-perl/HTML-Parser/issues"
125125
},
126-
"homepage" : "https://github.com/libwww-perl/html-parser",
126+
"homepage" : "https://github.com/libwww-perl/HTML-Parser",
127127
"repository" : {
128128
"type" : "git",
129-
"url" : "https://github.com/libwww-perl/html-parser.git",
130-
"web" : "https://github.com/libwww-perl/html-parser"
129+
"url" : "https://github.com/libwww-perl/HTML-Parser.git",
130+
"web" : "https://github.com/libwww-perl/HTML-Parser"
131131
}
132132
},
133-
"version" : "3.75",
133+
"version" : "3.76",
134134
"x_contributors" : [
135135
"Antonio Radici <antonio@dyne.org>",
136136
"Barbie <barbie@missbarbell.co.uk>",
@@ -146,12 +146,14 @@
146146
"Mike South <msouth@gmail.com>",
147147
"Nicholas Clark <nick@ccl4.org>",
148148
"Nicolas R <nicolas@atoomic.org>",
149+
"Olaf Alders <olaf@wundersolutions.com>",
149150
"Salvatore Bonaccorso <salvatore.bonaccorso@gmail.com>",
151+
"Todd Rinaldo <toddr@cpan.org>",
150152
"Ville Skytt\u00e4 <ville.skytta@iki.fi>",
151153
"Yves Orton <demerphq@gmail.com>",
152154
"Zefram <zefram@fysh.org>"
153155
],
154-
"x_generated_by_perl" : "v5.26.1",
156+
"x_generated_by_perl" : "v5.30.3",
155157
"x_serialization_backend" : "Cpanel::JSON::XS version 4.19",
156158
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
157159
}

Makefile.PL

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ my %WriteMakefileArgs = (
2525
"URI" => 0,
2626
"URI::URL" => 0,
2727
"XSLoader" => 0,
28-
"strict" => 0,
28+
"strict" => 0
2929
},
3030
"TEST_REQUIRES" => {
3131
"Config" => 0,
@@ -37,7 +37,7 @@ my %WriteMakefileArgs = (
3737
"Test" => 0,
3838
"Test::More" => 0,
3939
"URI" => 0,
40-
"strict" => 0,
40+
"strict" => 0
4141
},
4242
"VERSION" => "3.76",
4343
"test" => {
@@ -67,7 +67,7 @@ my %FallbackPrereqs = (
6767
"URI" => 0,
6868
"URI::URL" => 0,
6969
"XSLoader" => 0,
70-
"strict" => 0,
70+
"strict" => 0
7171
);
7272

7373
unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {

t/00-report-prereqs.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use strict;
44
use warnings;
55

6-
# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.027
6+
# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.028
77

88
use Test::More tests => 1;
99

@@ -188,6 +188,6 @@ if ( @dep_errors ) {
188188
);
189189
}
190190

191-
pass;
191+
pass('Reported prereqs');
192192

193193
# vim: ts=4 sts=4 sw=4 et:

0 commit comments

Comments
 (0)