Skip to content

Commit 8f943d7

Browse files
committed
increment $VERSION after 6.12 release
1 parent ff18565 commit 8f943d7

File tree

11 files changed

+13
-11
lines changed

11 files changed

+13
-11
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.12 2024-10-18 16:19:06Z
46
- Fix CRLF normalization with HTTP::Message 7.00 (GH#53) (Graham Knop)
57

Makefile.PL

Lines changed: 2 additions & 2 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.025.
1+
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.032.
22
use strict;
33
use warnings;
44

@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
3535
"Test::Warnings" => 0,
3636
"warnings" => 0
3737
},
38-
"VERSION" => "6.12",
38+
"VERSION" => "6.13",
3939
"test" => {
4040
"TESTS" => "t/*.t"
4141
}

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

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

0 commit comments

Comments
 (0)