File tree Expand file tree Collapse file tree 11 files changed +16
-10
lines changed Expand file tree Collapse file tree 11 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1
1
Change history for HTML-Form
2
2
3
+ {{$NEXT}}
4
+
3
5
6.11 2023-02-11 11:49:19Z
4
6
- Perl::Tidy-ed the entire codebase (GH#42) (Julien Fiegehenn)
5
7
- 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 = (
24
24
" HTTP::Request::Common" => " 6.03" ,
25
25
" Test::More" => " 0.96" ,
26
26
" URI" => " 1.10" ,
27
+ " parent" => 0,
27
28
" strict" => 0
28
29
},
29
30
" TEST_REQUIRES" => {
30
31
" ExtUtils::MakeMaker" => 0,
31
32
" File::Spec" => 0,
32
33
" HTTP::Response" => 0,
33
34
" Test::More" => " 0.96" ,
35
+ " Test::Warnings" => 0,
34
36
" warnings" => 0
35
37
},
36
- " VERSION" => " 6.11 " ,
38
+ " VERSION" => " 6.12 " ,
37
39
" test" => {
38
40
" TESTS" => " t/*.t"
39
41
}
@@ -50,7 +52,9 @@ my %FallbackPrereqs = (
50
52
" HTTP::Request::Common" => " 6.03" ,
51
53
" HTTP::Response" => 0,
52
54
" Test::More" => " 0.96" ,
55
+ " Test::Warnings" => 0,
53
56
" URI" => " 1.10" ,
57
+ " parent" => 0,
54
58
" strict" => 0,
55
59
" warnings" => 0
56
60
);
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use HTML::Form::ImageInput ();
13
13
use HTML::Form::FileInput ();
14
14
use HTML::Form::KeygenInput ();
15
15
16
- our $VERSION = ' 6.11 ' ;
16
+ our $VERSION = ' 6.12 ' ;
17
17
18
18
my %form_tags = map { $_ => 1 } qw( input textarea button select option) ;
19
19
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::FileInput;
3
3
use strict;
4
4
use parent ' HTML::Form::TextInput' ;
5
5
6
- our $VERSION = ' 6.11 ' ;
6
+ our $VERSION = ' 6.12 ' ;
7
7
8
8
# ABSTRACT: An HTML form file input element for use with HTML::Form
9
9
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::IgnoreInput;
3
3
use strict;
4
4
use parent ' HTML::Form::Input' ;
5
5
6
- our $VERSION = ' 6.11 ' ;
6
+ our $VERSION = ' 6.12 ' ;
7
7
8
8
# ABSTRACT: An HTML form ignored input element for use with HTML::Form
9
9
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::ImageInput;
3
3
use strict;
4
4
use parent ' HTML::Form::SubmitInput' ;
5
5
6
- our $VERSION = ' 6.11 ' ;
6
+ our $VERSION = ' 6.12 ' ;
7
7
8
8
# ABSTRACT: An HTML form image input element for use with HTML::Form
9
9
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package HTML::Form::Input;
2
2
3
3
use strict;
4
4
5
- our $VERSION = ' 6.11 ' ;
5
+ our $VERSION = ' 6.12 ' ;
6
6
7
7
# ABSTRACT: A generic HTML form input element for use with HTML::Form
8
8
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::KeygenInput;
3
3
use strict;
4
4
use parent ' HTML::Form::Input' ;
5
5
6
- our $VERSION = ' 6.11 ' ;
6
+ our $VERSION = ' 6.12 ' ;
7
7
8
8
# ABSTRACT: An HTML form keygen input element for use with HTML::Form
9
9
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use parent 'HTML::Form::Input';
5
5
6
6
use Carp ' croak' ;
7
7
8
- our $VERSION = ' 6.11 ' ;
8
+ our $VERSION = ' 6.12 ' ;
9
9
10
10
# ABSTRACT: An HTML form list input element for use with HTML::Form
11
11
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package HTML::Form::SubmitInput;
3
3
use strict;
4
4
use parent ' HTML::Form::Input' ;
5
5
6
- our $VERSION = ' 6.11 ' ;
6
+ our $VERSION = ' 6.12 ' ;
7
7
8
8
# ABSTRACT: An HTML form submit input element for use with HTML::Form
9
9
You can’t perform that action at this time.
0 commit comments