Skip to content

Commit

Permalink
increment $VERSION after 6.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Oct 18, 2024
1 parent ff18565 commit 8f943d7
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Change history for HTML-Form

{{$NEXT}}

6.12 2024-10-18 16:19:06Z
- Fix CRLF normalization with HTTP::Message 7.00 (GH#53) (Graham Knop)

Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.025.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.032.
use strict;
use warnings;

Expand Down Expand Up @@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Test::Warnings" => 0,
"warnings" => 0
},
"VERSION" => "6.12",
"VERSION" => "6.13",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use HTML::Form::ImageInput ();
use HTML::Form::FileInput ();
use HTML::Form::KeygenInput ();

our $VERSION = '6.12';
our $VERSION = '6.13';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/FileInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTML::Form::FileInput;
use strict;
use parent 'HTML::Form::TextInput';

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: An HTML form file input element for use with HTML::Form

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/IgnoreInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTML::Form::IgnoreInput;
use strict;
use parent 'HTML::Form::Input';

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: An HTML form ignored input element for use with HTML::Form

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/ImageInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTML::Form::ImageInput;
use strict;
use parent 'HTML::Form::SubmitInput';

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: An HTML form image input element for use with HTML::Form

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/Input.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package HTML::Form::Input;

use strict;

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: A generic HTML form input element for use with HTML::Form

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/KeygenInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTML::Form::KeygenInput;
use strict;
use parent 'HTML::Form::Input';

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: An HTML form keygen input element for use with HTML::Form

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/ListInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use parent 'HTML::Form::Input';

use Carp 'croak';

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: An HTML form list input element for use with HTML::Form

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/SubmitInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTML::Form::SubmitInput;
use strict;
use parent 'HTML::Form::Input';

our $VERSION = '6.12';
our $VERSION = '6.13';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Form/TextInput.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTML::Form::TextInput;
use strict;
use parent 'HTML::Form::Input';

our $VERSION = '6.12';
our $VERSION = '6.13';

# ABSTRACT: An HTML form text input element for use with HTML::Form

Expand Down

0 comments on commit 8f943d7

Please # to comment.