Skip to content

Commit b86ca3f

Browse files
committed
increment $VERSION after 6.11 release
1 parent a6b85d8 commit b86ca3f

File tree

11 files changed

+16
-10
lines changed

11 files changed

+16
-10
lines changed

Changes

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

3+
{{$NEXT}}
4+
35
6.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

Makefile.PL

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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
);

lib/HTML/Form.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use HTML::Form::ImageInput ();
1313
use HTML::Form::FileInput ();
1414
use HTML::Form::KeygenInput ();
1515

16-
our $VERSION = '6.11';
16+
our $VERSION = '6.12';
1717

1818
my %form_tags = map { $_ => 1 } qw(input textarea button select option);
1919

lib/HTML/Form/FileInput.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTML::Form::FileInput;
33
use strict;
44
use 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

lib/HTML/Form/IgnoreInput.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTML::Form::IgnoreInput;
33
use strict;
44
use 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

lib/HTML/Form/ImageInput.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTML::Form::ImageInput;
33
use strict;
44
use 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

lib/HTML/Form/Input.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTML::Form::Input;
22

33
use 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

lib/HTML/Form/KeygenInput.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTML::Form::KeygenInput;
33
use strict;
44
use 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

lib/HTML/Form/ListInput.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use parent 'HTML::Form::Input';
55

66
use 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

lib/HTML/Form/SubmitInput.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTML::Form::SubmitInput;
33
use strict;
44
use 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

0 commit comments

Comments
 (0)