File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Change history for HTML-Form
22
3+ {{$NEXT}}
4+
356.11 2023-02-11 11:49:19Z
46 - Perl::Tidy-ed the entire codebase (GH#42) (Julien Fiegehenn)
57 - Split extra packages inside HTML::Form into their own module files
Original file line number Diff line number Diff line change @@ -24,16 +24,18 @@ my %WriteMakefileArgs = (
2424 " HTTP::Request::Common" => " 6.03" ,
2525 " Test::More" => " 0.96" ,
2626 " URI" => " 1.10" ,
27+ " parent" => 0,
2728 " strict" => 0
2829 },
2930 " TEST_REQUIRES" => {
3031 " ExtUtils::MakeMaker" => 0,
3132 " File::Spec" => 0,
3233 " HTTP::Response" => 0,
3334 " Test::More" => " 0.96" ,
35+ " Test::Warnings" => 0,
3436 " warnings" => 0
3537 },
36- " VERSION" => " 6.11 " ,
38+ " VERSION" => " 6.12 " ,
3739 " test" => {
3840 " TESTS" => " t/*.t"
3941 }
@@ -50,7 +52,9 @@ my %FallbackPrereqs = (
5052 " HTTP::Request::Common" => " 6.03" ,
5153 " HTTP::Response" => 0,
5254 " Test::More" => " 0.96" ,
55+ " Test::Warnings" => 0,
5356 " URI" => " 1.10" ,
57+ " parent" => 0,
5458 " strict" => 0,
5559 " warnings" => 0
5660);
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use HTML::Form::ImageInput ();
1313use HTML::Form::FileInput ();
1414use HTML::Form::KeygenInput ();
1515
16- our $VERSION = ' 6.11 ' ;
16+ our $VERSION = ' 6.12 ' ;
1717
1818my %form_tags = map { $_ => 1 } qw( input textarea button select option) ;
1919
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::FileInput;
33use strict;
44use parent ' HTML::Form::TextInput' ;
55
6- our $VERSION = ' 6.11 ' ;
6+ our $VERSION = ' 6.12 ' ;
77
88# ABSTRACT: An HTML form file input element for use with HTML::Form
99
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::IgnoreInput;
33use strict;
44use parent ' HTML::Form::Input' ;
55
6- our $VERSION = ' 6.11 ' ;
6+ our $VERSION = ' 6.12 ' ;
77
88# ABSTRACT: An HTML form ignored input element for use with HTML::Form
99
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::ImageInput;
33use strict;
44use parent ' HTML::Form::SubmitInput' ;
55
6- our $VERSION = ' 6.11 ' ;
6+ our $VERSION = ' 6.12 ' ;
77
88# ABSTRACT: An HTML form image input element for use with HTML::Form
99
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package HTML::Form::Input;
22
33use strict;
44
5- our $VERSION = ' 6.11 ' ;
5+ our $VERSION = ' 6.12 ' ;
66
77# ABSTRACT: A generic HTML form input element for use with HTML::Form
88
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::KeygenInput;
33use strict;
44use parent ' HTML::Form::Input' ;
55
6- our $VERSION = ' 6.11 ' ;
6+ our $VERSION = ' 6.12 ' ;
77
88# ABSTRACT: An HTML form keygen input element for use with HTML::Form
99
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use parent 'HTML::Form::Input';
55
66use Carp ' croak' ;
77
8- our $VERSION = ' 6.11 ' ;
8+ our $VERSION = ' 6.12 ' ;
99
1010# ABSTRACT: An HTML form list input element for use with HTML::Form
1111
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::SubmitInput;
33use strict;
44use parent ' HTML::Form::Input' ;
55
6- our $VERSION = ' 6.11 ' ;
6+ our $VERSION = ' 6.12 ' ;
77
88# ABSTRACT: An HTML form submit input element for use with HTML::Form
99
You can’t perform that action at this time.
0 commit comments