Skip to content

Commit 810865f

Browse files
committed
increment $VERSION after 6.13 release
1 parent 639e77c commit 810865f

File tree

11 files changed

+15
-13
lines changed

11 files changed

+15
-13
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.13 2025-10-22 17:47:50Z
46
- Fix form.t compatibility with HTTP::Message 7.01+ (GH#57) (Copilot and
57
Gianni Ceccarelli)

Makefile.PL

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.032.
1+
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.033.
22
use strict;
33
use warnings;
44

@@ -20,7 +20,7 @@ my %WriteMakefileArgs = (
2020
"Carp" => 0,
2121
"Encode" => 2,
2222
"HTML::TokeParser" => 0,
23-
"HTTP::Request" => 6,
23+
"HTTP::Request" => "7.01",
2424
"HTTP::Request::Common" => "6.03",
2525
"Test::More" => "0.96",
2626
"URI" => "1.10",
@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
3535
"Test::Warnings" => 0,
3636
"warnings" => 0
3737
},
38-
"VERSION" => "6.13",
38+
"VERSION" => "6.14",
3939
"test" => {
4040
"TESTS" => "t/*.t"
4141
}
@@ -48,7 +48,7 @@ my %FallbackPrereqs = (
4848
"ExtUtils::MakeMaker" => 0,
4949
"File::Spec" => 0,
5050
"HTML::TokeParser" => 0,
51-
"HTTP::Request" => 6,
51+
"HTTP::Request" => "7.01",
5252
"HTTP::Request::Common" => "6.03",
5353
"HTTP::Response" => 0,
5454
"Test::More" => "0.96",

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.13';
16+
our $VERSION = '6.14';
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.13';
6+
our $VERSION = '6.14';
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.13';
6+
our $VERSION = '6.14';
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.13';
6+
our $VERSION = '6.14';
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.13';
5+
our $VERSION = '6.14';
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.13';
6+
our $VERSION = '6.14';
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.13';
8+
our $VERSION = '6.14';
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.13';
6+
our $VERSION = '6.14';
77

88
# ABSTRACT: An HTML form submit input element for use with HTML::Form
99

0 commit comments

Comments
 (0)