Skip to content

Commit 867bde2

Browse files
committed
increment $VERSION after 6.08 release
1 parent ec3a6ef commit 867bde2

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

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.08 2022-08-14 09:26:10Z
46
- Remove Authority section from dist.ini (GH#27) (Olaf Alders)
57
- Allow buttons to not have a value (GH#8) (Felix Ostmann and Julien Fiegehenn)

Makefile.PL

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

@@ -22,6 +22,7 @@ my %WriteMakefileArgs = (
2222
"HTML::TokeParser" => 0,
2323
"HTTP::Request" => 6,
2424
"HTTP::Request::Common" => "6.03",
25+
"Test::More" => "0.96",
2526
"URI" => "1.10",
2627
"strict" => 0,
2728
"vars" => 0
@@ -31,11 +32,11 @@ my %WriteMakefileArgs = (
3132
"File::Spec" => 0,
3233
"HTTP::Response" => 0,
3334
"Test" => 0,
34-
"Test::More" => 0,
35+
"Test::More" => "0.96",
3536
"lib" => 0,
3637
"warnings" => 0
3738
},
38-
"VERSION" => "6.08",
39+
"VERSION" => "6.09",
3940
"test" => {
4041
"TESTS" => "t/*.t"
4142
}
@@ -52,7 +53,7 @@ my %FallbackPrereqs = (
5253
"HTTP::Request::Common" => "6.03",
5354
"HTTP::Response" => 0,
5455
"Test" => 0,
55-
"Test::More" => 0,
56+
"Test::More" => "0.96",
5657
"URI" => "1.10",
5758
"lib" => 0,
5859
"strict" => 0,

lib/HTML/Form.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Carp ();
66
use Encode ();
77

88
use vars qw($VERSION);
9-
our $VERSION = '6.08';
9+
our $VERSION = '6.09';
1010

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

0 commit comments

Comments
 (0)